laravel-echo-server
laravel-echo-server copied to clipboard
Socket.io server for Laravel Echo
Hi! This PR adds an ability to set redis.db option via env variable `LARAVEL_ECHO_SERVER_REDIS_DB`.
How only allow authenticated users to establish a successful websocket connection? in client side use ```laravel-echo``` ``` { "authHost": "http://localhost", "authEndpoint": "/broadcasting/auth", "clients": [ { "appId": "620bafdba22974a2", "key": "e860c5fc92f4a20e7175754eb030e737" }...
Sorry for this. This might not be a bug. But I can not find any clue on search, I need help. my app runs properly in local env, but not...
**Redis prefix does nothing** laravel-echo-server version: 1.6.2 laravel-echo-server.json: ``` { "authHost": "http://localhost:8087", "authEndpoint": "/broadcasting/auth", "clients": [ ], "database": "redis", "databaseConfig": { "redis": { "port": "16378", "host": "localhost", "keyPrefix": "my-redis-prefix" },...
when you have 10K users and 5 channels per user and accidentally echo-server restart, the application will receive 50K auth requests concurrently and it can make the server down! I...
Closes #554 Closes #390
Hello! I have laravel-echo container running behind the nginx proxy in other container with config: location /connector/ { proxy_pass http://echo-web:6001/socket.io/; proxy_redirect off; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade";...
I have installed laravel-echo-server globally using `$ npm install -g laravel-echo-server` but, it gives error **laravel-echo-server: command not found** in laravel project when run `$ laravel-echo-server init`
This code will allow customize `authEndpoint` config option via environment variable `LARAVEL_ECHO_SERVER_AUTH_ENDPOINT`
**Describe the bug** Laravel-echo-server works good on my local environment (on http), when I deploy it to VPS running Ubuntu 18.04.4 (apache on https), with virtualmin cp and basic stuff......