Skip to content

Commit 2510266

Browse files
authored
Update docker-compose.yml
Sourced value is ECHO_REDIS_HOSTNAME, rather than ECHO_REDIS_HOST - ``` # cat laravel-echo-server.example.json { "authHost": "http://localhost", "authEndpoint": "/broadcasting/auth", "clients": {{ ECHO_CLIENTS }}, "database": "redis", "databaseConfig": { "redis": { "port": "{{ ECHO_REDIS_PORT }}", "host": "{{ ECHO_REDIS_HOSTNAME }}" } }, "devMode": "{{ ECHO_DEVMODE }}", "host": null, "port": "6001", "protocol": "{{ ECHO_PROTOCOL }}", "socketio": {}, "sslCertPath": "{{ ECHO_SSL_CERT_PATH }}", "sslKeyPath": "{{ ECHO_SSL_KEY_PATH }}", "sslCertChainPath": "{{ ECHO_SSL_CHAIN_PATH }}", "sslPassphrase": "{{ ECHO_SSL_PASSPHRASE }}", "apiOriginAllow": { "allowCors": {{ ECHO_ALLOW_CORS }}, "allowOrigin": "{{ ECHO_ALLOW_ORIGIN }}", "allowMethods": "{{ ECHO_ALLOW_METHODS }}", "allowHeaders": "{{ ECHO_ALLOW_HEADERS }}" } ```
1 parent 8b65e38 commit 2510266

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ services:
3131
- LARAVEL_ECHO_SERVER_HOST=0.0.0.0
3232
- LARAVEL_ECHO_SERVER_PORT=6001
3333
- ECHO_REDIS_PORT=6379
34-
- ECHO_REDIS_HOST=redis
34+
- ECHO_REDIS_HOSTNAME=redis
3535
- ECHO_PROTOCOL=http
3636
- ECHO_ALLOW_CORS=true
3737
- ECHO_ALLOW_ORIGIN=*

0 commit comments

Comments
 (0)