Sorry to hear you’re facing problems. 
The community help forum (help.nextcloud.com) is for home and non-enterprise users. Support is provided by other community members on a best effort / “as available” basis. All of those responding are volunteering their time to help you.
If you’re using Nextcloud in a business/critical setting, paid and SLA-based support services can be accessed via portal.nextcloud.com where Nextcloud engineers can help ensure your business keeps running smoothly.
Getting help
In order to help you as efficiently (and quickly!) as possible, please fill in as much of the below requested information as you can.
Before clicking submit: Please check if your query is already addressed via the following resources:
- most of office issues are handled in Collabora integration guide
- Official documentation (searchable and regularly updated)
- How to topics and FAQs
- Forum search
(Utilizing these existing resources is typically faster. It also helps reduce the load on our generous volunteers while elevating the signal to noise ratio of the forums otherwise arising from the same queries being posted repeatedly).Just a little information in case this problem ever arises:
I kept getting a message in the Nextcloud log saying that the properties of the external Collabora server could not be retrieved due to a proxy error. After checking that Collabora and the Docker container were running stably, I found the following error in the Apache2 log:
“proxy_http:error” AH01102
After reading up on it (https://httpd.apache.org/docs/current/mod/mod_proxy_http.html), I found that the solution for me was to add the following to the Collabora server’s page configuration:
disablereuse=on
So the line in the capabilities could look like this:
ProxyPass /hosting/capabilities https://127.0.0.1:9980/hosting/capabilities retry=0 disablereuse=on
Translated with DeepL.com (free version)
Just a little information in case this problem ever arises:
I kept getting a message in the Nextcloud log saying that the properties (…/hosting/capabilities) of the external Collabora server could not be retrieved due to a proxy error. After checking that Collabora and the Docker container were running stably, I found the following error in the Apache2 log:
“proxy_http:error” AH01102
After reading up on it (https://httpd.apache.org/docs/current/mod/mod_proxy_http.html), I found that the solution for me was to add the following to the Collabora server’s page configuration:
disablereuse=on
So the line in the capabilities could look like this:
ProxyPass /hosting/capabilities https://127.0.0.1:9980/hosting/capabilities retry=0 disablereuse=on