• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Question Pesk Docker running collabora online for nextcloud

cij

New Pleskian
Server operating system version
Ubuntu 22.04
Plesk version and microupdate number
Version 18.0.61
Hello,

On a Ubuntu 22 server, I have installed Plesk and am also running the Docker engine. I have successfully installed Collabora Online and set up a subdomain. Additionally, I have configured the reverse proxy settings in Nginx, and everything seems to be working correctly. The subdomain is also connected with the docker on port 9980. This means that when I add the subdomain in the Nextcloud backend, the Collabora Docker version is accessible and recognized as the correct Docker version. On the Docker itself, I can also access the Collabora admin interface without any issues.

However, when I try to open a document inside Nextcloud, I get the following error message:

Loading the document failedThe socket connection could not be established or was unexpectedly closed. The reverse proxy might be misconfigured. Please contact the administrator. For more information on proxy configuration, visit Proxy settings — SDK https://sdk.collaboraonline.com/ documentation

It seems that I have made a mistake in the configuration. I have deactivated Apache for the subdomain and am running only Nginx with the following additional settings:


# static files
location ^~ /browser {
proxy_pass http://127.0.0.1:9980
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}

# WOPI discovery URL
location ^~ /hosting/discovery {
proxy_pass http://127.0.0.1:9980
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}

# Capabilities
location ^~ /hosting/capabilities {
proxy_pass http://127.0.0.1:9980
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}

# main websocket
location ~ ^/cool/(.*)/ws$ {
proxy_pass http://127.0.0.1:9980
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 36000s;
}

# download, presentation and image upload
location ~ ^/(c|l)ool {
proxy_pass http://127.0.0.1:9980
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}

# Admin Console websocket
location ^~ /cool/adminws {
proxy_pass http://127.0.0.1:9980
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 36000s;
}

I have tested a lot of different settings but get not running the setup. Maybee anyone can help with this issue?
 
Back
Top