Replace 'localhost' with 'IPADDRESS' throughout documentation for consistency

This commit is contained in:
Andreas Düren
2025-03-16 20:09:41 +01:00
parent bc3fb33125
commit 81830ce99f
2 changed files with 5 additions and 5 deletions

View File

@@ -14,8 +14,8 @@ This package provides Elasticsearch for Cloudron, configured for internal use on
After installation, Elasticsearch will be available at the following URLs:
- HTTP API: `http://localhost:9200` (from within other Cloudron apps)
- Transport port: `localhost:9300` (for Elasticsearch clients)
- HTTP API: `http://IPADDRESS:9200` (from within other Cloudron apps)
- Transport port: `IPADDRESS:9300` (for Elasticsearch clients)
### Authentication
@@ -33,7 +33,7 @@ You can find the password in:
To connect to Elasticsearch from another Cloudron app, use the following connection details:
```
Host: localhost
Host: IPADDRESS
Port: 9200
Protocol: http
Username: elastic
@@ -43,7 +43,7 @@ Password: <password from credentials.txt>
Example connection using cURL:
```bash
curl -u elastic:<password> http://localhost:9200
curl -u elastic:<password> http://IPADDRESS:9200
```
### Setting up Indices