You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Step 11 - Whitelist your Nextcloud instance to access Collabora" doesn't really fit into this guide. Although its not wrong to mention the coolwsd.xml for configuration purposes, the section is generally kind of misleading.
"Follow this Collabora Online guide to install the required packages." is misleading since we're running it with docker and not on the host OS.
Editing the /etc/coolwsd/coolwsd.xml file inside the container to add an alias group for https://nextcloud.example.com:443 is not necessary since we already declared that with the -e "aliasgroup1=https://nextcloud.example.com:443" in step 3 (according to the docs)
If there is anything wrong with what i say here, let me know.
Suggested Fix
We could replace it with the following:
Step 11 - Further configuration
For more fine grained configuration you can copy out the coolwsd.xml configuration file to edit it and then mount it.
First copy the config file and adjust the read permissions, so we don't get any errors when mounting it.
If you dont specify the aliasgroup1 environment variable, you should add your nextcloud domain with an alias group to the config file to limit the access to office.example.com (see the docs)
The text was updated successfully, but these errors were encountered:
Problem
"Step 11 - Whitelist your Nextcloud instance to access Collabora" doesn't really fit into this guide. Although its not wrong to mention the
coolwsd.xml
for configuration purposes, the section is generally kind of misleading./etc/coolwsd/coolwsd.xml
file inside the container to add an alias group forhttps://nextcloud.example.com:443
is not necessary since we already declared that with the-e "aliasgroup1=https://nextcloud.example.com:443"
in step 3 (according to the docs)If there is anything wrong with what i say here, let me know.
Suggested Fix
We could replace it with the following:
Step 11 - Further configuration
For more fine grained configuration you can copy out the
coolwsd.xml
configuration file to edit it and then mount it.First copy the config file and adjust the read permissions, so we don't get any errors when mounting it.
Then stop and remove the container we started in step 3.
Edit the
coolwsd.xml
to your liking and finally start the container again, mounting the localcoolwsd.xml
as a config file:docker run -t -d -p 127.0.0.1:9980:9980 -e "aliasgroup1=https://nextcloud.example.com:443" -v ./coolwsd.xml:/etc/coolwsd/coolwsd.xml --restart always collabora/code
The text was updated successfully, but these errors were encountered: