We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Secured connections is not easy for configuration. There are some problems with handshake in react.
Easier way is:
In apache load modules: proxy_http, proxy, proxy_wstunnel You can use command: a2enmod proxy_http proxy proxy_wstunnel
a2enmod proxy_http proxy proxy_wstunnel
To your httpd-vhost.conf add at the begin
ProxyPass /websocket ws://127.0.0.1:8888 ProxyPassReverse /websocket ws://127.0.0.1:8888
Traffic will be secured between client and proxy. After proxy will be communication unsecured.
webSockets: clients: storage: driver: @clients.driver.memory ttl: 0 server: httpHost: localhost port: 8888 address: 0.0.0.0 routes: '/test/<handle>' : 'Test"' mapping: *: App\WebsocketControllers\*Controller
I have not specified secured because between application and proxy is communication unsecured.
IPub.WebSockets.WAMP.initialize('wss://myweb.com/websockets');
This configuration works for me.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Secured connections is not easy for configuration. There are some problems with handshake in react.
Easier way is:
In apache load modules: proxy_http, proxy, proxy_wstunnel
You can use command:
a2enmod proxy_http proxy proxy_wstunnel
To your httpd-vhost.conf add at the begin
Traffic will be secured between client and proxy. After proxy will be communication unsecured.
webSockets: clients: storage: driver: @clients.driver.memory ttl: 0 server: httpHost: localhost port: 8888 address: 0.0.0.0 routes: '/test/<handle>' : 'Test"' mapping: *: App\WebsocketControllers\*Controller
I have not specified secured because between application and proxy is communication unsecured.
IPub.WebSockets.WAMP.initialize('wss://myweb.com/websockets');
This configuration works for me.
The text was updated successfully, but these errors were encountered: