fix: new coolwsd config

This commit is contained in:
decentral1se 2021-12-15 09:38:42 +01:00
parent 69602dfae0
commit 21d70e575a
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 44 additions and 40 deletions

View File

@ -14,25 +14,28 @@ http {
server_name {{ env "DOMAIN" }}; server_name {{ env "DOMAIN" }};
# static files # static files
location ^~ /loleaflet { location ^~ /browser {
proxy_pass http://collabora-upstream; proxy_pass http://collabora-upstream;
proxy_set_header Host $http_host; proxy_set_header Host $http_host;
} }
# WOPI discovery URL # WOPI discovery URL
location ^~ /hosting/discovery { location ^~ /hosting/discovery {
proxy_pass http://collabora-upstream; proxy_pass http://collabora-upstream;
proxy_set_header Host $http_host; proxy_set_header Host $http_host;
} }
# Capabilities # Capabilities
location ^~ /hosting/capabilities { location ^~ /hosting/capabilities {
proxy_pass http://collabora-upstream; proxy_pass http://collabora-upstream;
proxy_set_header Host $http_host; proxy_set_header Host $http_host;
} }
# Main websocket
location ~ /lool/(.*)/ws$ { # main websocket
location ~ ^/cool/(.*)/ws$ {
proxy_pass http://collabora-upstream; proxy_pass http://collabora-upstream;
proxy_set_header Upgrade $http_upgrade; proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade"; proxy_set_header Connection "Upgrade";
@ -40,20 +43,21 @@ http {
proxy_read_timeout 36000s; proxy_read_timeout 36000s;
} }
# Admin Console websocket
location ^~ /lool/adminws {
proxy_buffering off;
proxy_pass http://collabora-upstream;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $http_host;
proxy_read_timeout 36000s;
}
# download, presentation and image upload # download, presentation and image upload
location ~ /lool { location ~ ^/(c|l)ool {
proxy_pass http://collabora-upstream; proxy_pass http://collabora-upstream;
proxy_set_header Host $http_host; proxy_set_header Host $http_host;
} }
# Admin Console websocket
location ^~ /cool/adminws {
proxy_pass http://collabora-upstream;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $http_host;
proxy_read_timeout 36000s;
}
} }
} }