ONLYOFFICE 7.3 websocket path changed

Hello @tsetsiba

As I can see, the error mentioned by you is not quite related to the changed websocket library.
Please create a separate thread and describe there your problem in most details. Remember to provide version of used Document Server and its logs after reproducing the issue.
Logs of Document Server you can find:

  • for Windows installation in C:\Program Files\ONLYOFFICE\DocumentServer\Log\;
  • for Linux installation in /var/log/onlyoffice/documentserver/ (same path for Docker but inside the container with Document Server).

In general, you can reference your proxy config with the ones that we recommend using:
https://helpcenter.onlyoffice.com/installation/docs-community-proxy.aspx

1 Like

We will correct the proxy configuration examples.

Are there already plans to update those examples?
Could someone help me out whit a HAproxy example?

I don’t have a HAproxy example but this reverse proxy configuration appears to work for Apache:

  <IfModule rewrite_module>
    RewriteEngine on
    RewriteCond %{HTTP:Upgrade} websocket [NC]
    RewriteCond %{HTTP:Connection} upgrade [NC]
    RewriteRule ^/?(.*) "ws://127.0.0.1:8080/$1" [P,L]
  </IfModule>
  <IfModule proxy_module>
    ProxyRequests Off
    ProxyErrorOverride On
    ProxyAddHeaders Off
    ProxyPass "/.well-known" "!"
    ProxyPass "/" "http://127.0.0.1:8080/"
    ProxyPassReverse "/" "http://127.0.0.1:8080/"
  </IfModule>