From fd9001377bca3a3f41f801770873637e0acd82ce Mon Sep 17 00:00:00 2001 From: Denis Kadyshev Date: Wed, 17 Mar 2021 20:28:47 +0700 Subject: [PATCH 1/2] Add LARAVEL_ECHO_SERVER_AUTH_ENDPOINT variable --- src/cli/cli.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli/cli.ts b/src/cli/cli.ts index ec12f200..74a0e8f2 100644 --- a/src/cli/cli.ts +++ b/src/cli/cli.ts @@ -28,6 +28,7 @@ export class Cli { */ envVariables: any = { LARAVEL_ECHO_SERVER_AUTH_HOST: "authHost", + LARAVEL_ECHO_SERVER_AUTH_ENDPOINT: "authEndpoint", LARAVEL_ECHO_SERVER_DEBUG: "devMode", LARAVEL_ECHO_SERVER_HOST: "host", LARAVEL_ECHO_SERVER_PORT: "port", From 64cf458f94fa358a2fea0f60894f7f05050d0ab4 Mon Sep 17 00:00:00 2001 From: Denis Kadyshev Date: Wed, 17 Mar 2021 20:31:18 +0700 Subject: [PATCH 2/2] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 757a0b51..3ede3c2b 100644 --- a/README.md +++ b/README.md @@ -99,6 +99,7 @@ If a .env file is found in the same directory as the laravel-echo-server.json file, the following options can be overridden: - `authHost`: `LARAVEL_ECHO_SERVER_AUTH_HOST` *Note*: This option will fall back to the `LARAVEL_ECHO_SERVER_HOST` option as the default if that is set in the .env file. +- `authEndpoint`: `LARAVEL_ECHO_SERVER_AUTH_ENDPOINT` - `host`: `LARAVEL_ECHO_SERVER_HOST` - `port`: `LARAVEL_ECHO_SERVER_PORT` - `devMode`: `LARAVEL_ECHO_SERVER_DEBUG`