Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/vm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Hansson <github@hanssonit.se>2021-11-30 20:34:17 +0300
committerGitHub <noreply@github.com>2021-11-30 20:34:17 +0300
commit7f0dc6dbe7be554abfdcd7aef09e9e32816927e2 (patch)
treee7fe51a71277693d7ceed5ed9822e4f68f52989c
parent5493b327fba2e1121125081813c807b98cb6c4c9 (diff)
fix apache config for collabora (#2150)
Fix https://github.com/nextcloud/vm/issues/2149#issuecomment-981822399
-rw-r--r--apps/collabora_docker.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/collabora_docker.sh b/apps/collabora_docker.sh
index 8a56eeea..394ed373 100644
--- a/apps/collabora_docker.sh
+++ b/apps/collabora_docker.sh
@@ -198,10 +198,10 @@ then
# keep the host
ProxyPreserveHost On
- # static html, js, images, etc. served from loolwsd
- # loleaflet is the client part of LibreOffice Online
- ProxyPass /loleaflet https://127.0.0.1:9980/loleaflet retry=0
- ProxyPassReverse /loleaflet https://127.0.0.1:9980/loleaflet
+ # static html, js, images, etc. served from coolwsd
+ # browser is the client part of LibreOffice Online
+ ProxyPass /browser https://127.0.0.1:9980/browser retry=0
+ ProxyPassReverse /browser https://127.0.0.1:9980/browser
# WOPI discovery URL
ProxyPass /hosting/discovery https://127.0.0.1:9980/hosting/discovery retry=0
@@ -212,14 +212,14 @@ then
ProxyPassReverse /hosting/capabilities https://127.0.0.1:9980/hosting/capabilities
# Main websocket
- ProxyPassMatch "/lool/(.*)/ws$" wss://127.0.0.1:9980/lool/\$1/ws nocanon
+ ProxyPassMatch "/cool/(.*)/ws$" wss://127.0.0.1:9980/cool/\$1/ws nocanon
# Admin Console websocket
- ProxyPass /lool/adminws wss://127.0.0.1:9980/lool/adminws
+ ProxyPass /cool/adminws wss://127.0.0.1:9980/cool/adminws
# Download as, Fullscreen presentation and Image upload operations
- ProxyPass /lool https://127.0.0.1:9980/lool
- ProxyPassReverse /lool https://127.0.0.1:9980/lool
+ ProxyPass /cool https://127.0.0.1:9980/cool
+ ProxyPassReverse /cool https://127.0.0.1:9980/cool
</VirtualHost>
HTTPS_CREATE