Hi folks,
I get the error: "Cannot GET /onlyoffice" calling my OnlyOffice-Server https://xxx.spdns.org/onlyoffice. The Only-Office-Server is installed on the same machine but should be also accessible via the local IP. The Nginx Logs do not really show my an interpretable output.
My location Block looks like this:
location ~ ^/onlyoffice {
proxy_pass https://192.168.178.92:4433;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
proxy_set_header X-Forwarded-Proto $scheme;
}
Can sbd. tell me whats wrong here?
Thanks for your help.