ONLYOFFICE 7.3 websocket path changed

BTW we have an update, it seems you can temporarily fix the issue using this example:

Replace the line
ProxyPassMatch /(.*)(\/websocket)$ "ws://${OO_ADDRESS}/$1$2"
with

RewriteCond %{HTTP:Upgrade} websocket [NC]
RewriteCond %{HTTP:Connection} upgrade [NC]
RewriteRule ^/?(.*) "wss://${OO_ADDRESS}/$1" [P,L]

and check the results.

1 Like