b6182877a8
Signed-off-by: Andras Timar <andras.timar@collabora.com> Change-Id: I8a3930a01a18be32bee657142f872ba58383594d
38 lines
1.6 KiB
Text
38 lines
1.6 KiB
Text
# Apache2 reverse proxy configuration for Collabora Online
|
|
# Internet <-- SSL --> Reverse Proxy <-- No SSL --> coolwsd
|
|
# Make sure that you enable the following Apache2 modules: proxy, proxy_wstunnel, and proxy_http.
|
|
# Create a virtual host for Collabora Online and include this configuration file.
|
|
|
|
Options -Indexes
|
|
|
|
# Encoded slashes need to be allowed
|
|
AllowEncodedSlashes NoDecode
|
|
|
|
# keep the host
|
|
ProxyPreserveHost On
|
|
|
|
# static html, js, images, etc. served from coolwsd
|
|
# browser is the client part of Collabora Online
|
|
ProxyPass /browser http://127.0.0.1:9980/browser retry=0
|
|
ProxyPassReverse /browser http://127.0.0.1:9980/browser
|
|
|
|
# WOPI discovery URL
|
|
ProxyPass /hosting/discovery http://127.0.0.1:9980/hosting/discovery retry=0
|
|
ProxyPassReverse /hosting/discovery http://127.0.0.1:9980/hosting/discovery
|
|
|
|
# Capabilities
|
|
ProxyPass /hosting/capabilities http://127.0.0.1:9980/hosting/capabilities retry=0
|
|
ProxyPassReverse /hosting/capabilities http://127.0.0.1:9980/hosting/capabilities
|
|
|
|
# Main websocket
|
|
ProxyPassMatch "/cool/(.*)/ws$" ws://127.0.0.1:9980/cool/$1/ws nocanon
|
|
|
|
# Admin Console websocket
|
|
ProxyPass /cool/adminws ws://127.0.0.1:9980/cool/adminws
|
|
|
|
# Download as, Fullscreen presentation and Image upload operations
|
|
ProxyPass /cool http://127.0.0.1:9980/cool
|
|
ProxyPassReverse /cool http://127.0.0.1:9980/cool
|
|
# Compatibility with integrations that use the /lool/convert-to endpoint
|
|
ProxyPass /lool http://127.0.0.1:9980/cool
|
|
ProxyPassReverse /lool http://127.0.0.1:9980/cool
|