Files
nextcloud-docs/admin_manual/office/example-ubuntu.rst
Julius Härtl cc339f6503 Apply suggestions from code review
Co-authored-by: Jonas <jonas@nextcloud.com>
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-03-20 11:27:20 +01:00

51 lines
1.5 KiB
ReStructuredText
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
====================================
Installation example on Ubuntu 20.04
====================================
Import signing keys:
********************
.. code-block:: bash
cd /usr/share/keyrings && sudo wget https://collaboraoffice.com/downloads/gpg/collaboraonline-release-keyring.gpg
Add repository:
***************
.. code-block:: bash
sudo echo "deb https://www.collaboraoffice.com/repos/CollaboraOnline/CODE-ubuntu2004 ./" > /etc/apt/sources.list.d/collaboraonline.sources
Install packages
****************
.. code-block:: bash
sudo apt update && sudo apt install coolwsd code-brand
Configuration
*************
Edit /etc/coolwsd/coolwsd.xml. Collabora Online (coolwsd) service runs via systemd. After editing the configuration file, you have to restart the service:
.. code-block:: bash
sudo systemctl restart coolwsd
The default configuration is looking for an SSL certificate and key, which are not present, so probably its the best to disable SSL, and optionally enable SSL termination, then set up the reverse proxy.
.. seealso::
Full configuration examples for reverse proxy setup can be found in the Collabora Online documentation:
https://sdk.collaboraonline.com/docs/installation/Proxy_settings.html
.. code-block:: bash
sudo coolconfig set ssl.enable false
sudo coolconfig set ssl.termination true
sudo coolconfig set storage.wopi.host nextcloud.example.com
sudo coolconfig set-admin-password
sudo systemctl restart coolwsd
systemctl status coolwsd