Re: [users@httpd] reverse proxying websocket connections

2023-07-04 Thread Helmut K. C. Tessarek
On 2023-07-04 03:58, Yann Ylavic wrote: Yes, they should be the same. Upgrade only takes place when requested AND accepted/switched by the backend server. Awesome. Thanks so much for the confirmation. Have a great day, K. C. -- regards Helmut K. C. Tessarek KeyID 0x172380A011EF

Re: [users@httpd] reverse proxying websocket connections

2023-07-04 Thread Yann Ylavic
On Tue, Jul 4, 2023 at 2:28 AM Helmut K. C. Tessarek wrote: > > The documentation states: > > Proxying both HTTP and websockets at the same time, where the websockets URL's > are not websocket-only or not known in advance can be done by using the > RewriteRule directive to configure the websockets

[users@httpd] reverse proxying websocket connections

2023-07-03 Thread Helmut K. C. Tessarek
The documentation states: Proxying both HTTP and websockets at the same time, where the websockets URL's are not websocket-only or not known in advance can be done by using the RewriteRule directive to configure the websockets proxying: ProxyPass / http://example.com:9080/ RewriteEngine on Re