https://bugs.documentfoundation.org/show_bug.cgi?id=166206
Bug ID: 166206
Summary: Wrong reverse proxy configuration example in
documentation
Product: LibreOffice
Version: 24.2.0.0 alpha0+
Hardware: All
OS: All
Status: UNCONFIRMED
Severity: normal
Priority: medium
Component: Documentation
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected]
Description:
I have followed reverse proxy configuration for collabora, I managed to get it
work with nextcloud, but my instance was reporting problems with accessing
/hosting/capabilities /hosting/doscovery endpoints. After long research I
resolved the problem with adding trailing slashes to the configuration. Could
you please update the documentation accordingly? My configuration now is as
follows:
# static html, js, images, etc. served from coolwsd
# browser is the client part of LibreOffice Online
ProxyPass /browser https://localhost:9980/browser/ retry=0
ProxyPassReverse /browser https://localhost:9980/browser/
# WOPI discovery URL
ProxyPass /hosting/discovery
https://localhost:9980/hosting/discovery/ retry=0
ProxyPassReverse /hosting/discovery
https://localhost:9980/hosting/discovery/
# Main websocket
ProxyPassMatch "/cool/(.*)/ws$" wss://localhost:9980/cool/$1/ws nocanon
# Admin Console websocket
ProxyPass /cool/adminws wss://localhost:9980/cool/adminws/
# Download as, Fullscreen presentation and Image upload operations
ProxyPass /cool https://localhost:9980/cool/
ProxyPassReverse /cool https://localhost:9980/cool/
# Endpoint with information about availability of various features
ProxyPass /hosting/capabilities
https://localhost:9980/hosting/capabilities/ retry=0
ProxyPassReverse /hosting/capabilities
https://localhost:9980/hosting/capabilities/
Please notice trailing slashes at the end of each endpoint.
Steps to Reproduce:
As in description - this is just an improvement in documentation
Actual Results:
As in description - this is just an improvement in documentation
Expected Results:
As in description - this is just an improvement in documentation
Reproducible: Always
User Profile Reset: No
Additional Info:
As in description - this is just an improvement in documentation
--
You are receiving this mail because:
You are the assignee for the bug.