From 26f20e63fdda1ba6c50f54bb0956eacc923dc49a Mon Sep 17 00:00:00 2001
From: Samuel t('The following steps will download the Collabora Online docker, make sure to replace "cloud.nextcloud.com" with the host that your own Nextcloud runs on. Also make sure to escape all dots with double backslashes (\\), since this string will be evaluated as a regular expression (and your bash \'eats\' the first backslash.) If you want to use the docker container with more than one Nextcloud, you\'ll need to use');?> 'domain=cloud\\.nextcloud\\.com\|second\\.nextcloud\\.com' t('instead. (All hosts are separated by \|.)');?>
docker pull collabora/code
- docker run -t -d -p 127.0.0.1:9980:9980 -e 'domain=cloud\\.nextcloud\\.com' --restart always --cap-add MKNOD collabora/code
+ docker run -t -d -p 127.0.0.1:9980:9980 -e 'aliasgroup1=https://cloud.nextcloud.com:443' --restart always --cap-add MKNOD collabora/code
t('Optionally, you can select the dictionaries you want with:');?>
- docker run -t -d -p 127.0.0.1:9980:9980 -e 'domain=cloud\\.nextcloud\\.com' -e 'dictionaries=de en es ..' --restart always --cap-add MKNOD collabora/code
+ docker run -t -d -p 127.0.0.1:9980:9980 -e 'aliasgroup1=https://cloud.nextcloud.com:443' -e 'dictionaries=de en es ..' --restart always --cap-add MKNOD collabora/code
t('This way you are not only limited to German, English, Italian, French and Spanish.');?>
t('That will be enough. Once you have done that the server will listen on "localhost:9980". Now we just need to configure the locally installed Apache reverse proxy.');?>
@@ -326,7 +326,7 @@
-docker run -t -d -p 127.0.0.1:9980:9980 -e 'domain=cloud\\.nextcloud\\.com' --restart always --cap-add MKNOD collabora/code
+docker run -t -d -p 127.0.0.1:9980:9980 -e 'aliasgroup1=https://cloud.nextcloud.com:443' --restart always --cap-add MKNOD collabora/code
t('Enjoy!');?>
From 4fcddf7b7cb55777672ae65f7c3f185c37a83545 Mon Sep 17 00:00:00 2001 From: Samuelt('Note: This guide does NOT cover self-signed certificates. If you use a self-signed certificate then you\'re mostly on your own ;-)');?>
t('The following steps will download the Collabora Online docker, make sure to replace "cloud.nextcloud.com" with the host that your own Nextcloud runs on. Also make sure to escape all dots with double backslashes (\\), since this string will be evaluated as a regular expression (and your bash \'eats\' the first backslash.) If you want to use the docker container with more than one Nextcloud, you\'ll need to use');?> 'domain=cloud\\.nextcloud\\.com\|second\\.nextcloud\\.com' t('instead. (All hosts are separated by \|.)');?>
t('The following steps will download the Collabora Online docker, make sure to replace "cloud.nextcloud.com" with the host that your own Nextcloud runs on. If you want to use the docker container with more than one Nextcloud, you\'ll need to use');?> '-e "aliasgroup1=https:// t('instead.');?>
docker pull collabora/code
docker run -t -d -p 127.0.0.1:9980:9980 -e 'aliasgroup1=https://cloud.nextcloud.com:443' --restart always --cap-add MKNOD collabora/code
@@ -243,7 +243,6 @@
a2enmod proxy_http
a2enmod ssl
- t('Warning, if you are using Nextcloud 23 (Nextcloud HUB II), the VirtualHost configuration has changed. You can find the latest installation information on Collabora Online official documentation', ['https://sdk.collaboraonline.com/docs/installation/Proxy_settings.html#reverse-proxy-with-apache-2-webserver']);?>
t('Afterward, configure one VirtualHost properly to proxy the traffic. For security reason we recommend to use a subdomain such as office.nextcloud.com instead of running on the same domain. An example config can be found below:');?>
@@ -296,7 +295,7 @@
</VirtualHost>
- t('After configuring these do restart your apache using /etc/init.d/apache2 restart.');?>
+ t('After configuring these do restart your apache using systemctl restart apache2.service.');?>
t('3. Configure the app in Nextcloud');?>
- t('Go to the Apps section and choose "Office & text"');?>