Created
March 27, 2020 10:03
-
-
Save einnar82/29ed1ebf6ad5c44265718a31315803ca to your computer and use it in GitHub Desktop.
Laravel Echo Server Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"authHost": "http://localhost", | |
"authEndpoint": "/broadcasting/auth", | |
"clients": [], | |
"database": "redis", | |
"databaseConfig": { | |
"redis" : { | |
"port": "6379", | |
"host": "localhost" | |
}, | |
"publishPresence": true | |
}, | |
"devMode": true, | |
"host": null, | |
"port": "6001", | |
"protocol": "http", | |
"socketio": {}, | |
"sslCertPath": "", | |
"sslKeyPath": "", | |
"sslCertChainPath": "", | |
"sslPassphrase": "", | |
"apiOriginAllow":{ | |
"allowCors" : true, | |
"allowOrigin" : "http://127.0.0.1", | |
"allowMethods" : "GET, POST", | |
"allowHeaders" : "Origin, Content-Type, X-Auth-Token, X-Requested-With, Accept, Authorization, X-CSRF-TOKEN, X-Socket-Id" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment