Install Collabora Online Office on Ubuntu & connect to Owncloud or Nextcloud

  • Nicolas
  • 05 Οκτωβρίου, 2019
  • Δεν υπάρχουν Σχόλια

Please do not publish this article without my permission. Thanks.

Step 1: Once we have set up our cloud and installed the plugin for collabora office interface
we are preparing a new ubuntu server 19.04 either on Virtual Machine with the appropriate ports open, or on
Physical Machine also with the proper ports open, or a Google VM Instance,
for that go to console.cloud.google.com (create an account if you don’t have one, you can have a trial) and
on the Compute Engine / VM Instances tab, we are creating a new instance with the following specifications:
n1-standard-1 (1 vcpu, 3.75 GB memory), (us-west1 (Oregon), ubuntu 19.04 minimum)
It only costs $ 24.67 a month.

Step 2: We start our server (SSH connection ie client or browser if google)

Step 3: After logging in we give the following commands (where we ask, press y and enter)
Administrator rights first (otherwise every command with sudo in front): sudo su
And right after:
apt-get update
apt-get ugprade
apt-get dist-upgrade
apt-get install lamp-server^
a2enmod proxy
a2enmod proxy_http
a2enmod ssl
a2enmod proxy_http2
a2enmod proxy_ajp
a2enmod rewrite
a2enmod deflate
a2enmod headers
a2enmod proxy_balancer
a2enmod proxy_connect
a2enmod proxy_html
a2enmod proxy_wstunnel

Step 4: apt-get install docker.io
systemctl start docker
systemctl enable docker

Step 5: apt-get update
apt-get install software-properties-common
add-apt-repository ppa:certbot/certbot
apt-get update
apt-get install python-certbot-apache

Step 6:
For this step, you will first need to make a subdomain of your address.
for example if your address is nikos.com the subdomain will be office.nikos.com
Once you make the subdomain from your dns service (on papaki, cloudflare, goddaddy, anywhere)
its A record should point to the external IP of your server, eg 48.32.144.12 etc.
(if your server is personal, open ports on the router and find the external ip from
whatismyip.com, if it is on google, Google gives it external IP directly)

Go to the console and write the following command
(replace the command with your own domain, eg .nikos \. com will become giorgos \ .gr)
(also replace the user with the username you want and definitely the password)
(WARNING, IT WILL NOT SUBDOMAIN YOUR CLOUD, BUT DOMAIN YOU HAVE YOUR CLOUD)

The order:
docker run -t -d -p 127.0.0.1:9980:9980 -e ‘domain=nikos\.com’ -e ‘username=user’ -e ‘password=484848’ –cap-add MKNOD collabora/code

Step 7:
We will now create the vhost that will connect your subdomain to the server:
nano /etc/apache2/sites-available/office.nikos.com.conf
(is meant before you give the command to replace the subdomain)
(if the nano program is not installed, first write: apt-get install nano)

Step 8:
In the nano window that will open, paste the following (by changing the subdomain):
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request’s Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
ServerName office.nikos.com

ServerAdmin webmaster@nikos.com
DocumentRoot /var/www/html

# Available loglevels: trace8, …, trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn

ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined

# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with “a2disconf”.
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>

Step 9:
Press CTRL + X, then Y and Enter to close and save the conf document you just created

Step 10:
We will now activate the new document:
a2ensite office.nikos.com.conf
and right after: systemctl reload apache2

Step 11:
Now we will create the LetsEncrypt-Certificate (change the subdomain before giving the command):
certbot –authenticator standalone –installer apache -d office.nikos.com –pre-hook “service apache2 stop” –post-hook “service apache2 start”
and ATTENTION, once he asks us area etc we will answer and just go to the technical part and ask us
we will select option 2 (redirect)

Step 12:
The Step 11 created another new conf file, like we did in step 8.
We need to edit it and change it.
Below I give you the command, change it to your own subdomain (but be careful not to change -le-ssl):
nano /etc/apache2/sites-available/office.nikos.com-le-ssl.conf

Step 13:
In the nano window that opened, slowly erase it inside and insert the following (make changes before):
<VirtualHost *:443>
ServerName office.nikos.com:443

# SSL configuration, you may want to take the easy route instead and use Lets Encrypt!
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/office.nikos.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/office.nikos.com/privkey.pem
SSLProtocol all -SSLv2 -SSLv3
SSLCipherSuite ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:DES-CBC3-SHA:!DSS
SSLHonorCipherOrder on

# Encoded slashes need to be allowed
AllowEncodedSlashes NoDecode

# Container uses a unique non-signed certificate
SSLProxyEngine On
SSLProxyVerify None
SSLProxyCheckPeerCN Off
SSLProxyCheckPeerName Off

# keep the host
ProxyPreserveHost On

# static html, js, images, etc. served from loolwsd
# loleaflet is the client part of Collabora Online
ProxyPass /loleaflet https://127.0.0.1:9980/loleaflet retry=0
ProxyPassReverse /loleaflet https://127.0.0.1:9980/loleaflet

# WOPI discovery URL
ProxyPass /hosting/discovery https://127.0.0.1:9980/hosting/discovery retry=0
ProxyPassReverse /hosting/discovery https://127.0.0.1:9980/hosting/discovery

# Capabilities
ProxyPass /hosting/capabilities https://127.0.0.1:9980/hosting/capabilities retry=0
ProxyPassReverse /hosting/capabilities https://127.0.0.1:9980/hosting/capabilities

# Main websocket
ProxyPassMatch “/lool/(.*)/ws$” wss://127.0.0.1:9980/lool/$1/ws nocanon

# Admin Console websocket
ProxyPass /lool/adminws wss://127.0.0.1:9980/lool/adminws

# Download as, Fullscreen presentation and Image upload operations
ProxyPass /lool https://127.0.0.1:9980/lool
ProxyPassReverse /lool https://127.0.0.1:9980/lool
</VirtualHost>

Step 14:
Save the document and close it (with CTRL + X, Y and Enter)
Restart apache with: systemctl reload apache2

Step 15:
See if all went well in the following admin url: https://office.nikos.com/loleaflet/dist/admin/admin.html

If it doesn’t open:
See the following:
run the command: docker ps and see if the docker is running,
if not check step 6 again and then check again.
There may also be an issue with port 9980, open it, IN and OUT
If everything else is to blame, you have not done something right or you need to do something extra
because you may have another Linux distribution, older, newer, etc.
Anyway, contact me. 😉

Step 16:
From here we move on, once we are done with the previous ones.

Original Source: https://nicolaslagios.com/install-collabora-online-office-on-ubuntu-connect-with-owncloud-or-nextcloud/

Σχολιασμός μέσω Facebook

Αφήστε μια απάντηση

Η ηλ. διεύθυνση σας δεν δημοσιεύεται.


Digital Marketing

Οι σελίδες των υπηρεσιών Digital Marketing θα είναι σύντομα κοντά σας.

Μπορείτε ήδη να δείτε και να παραγγείλετε (online ή μέσω επικοινωνίας) τις υπηρεσίες μας στις “Πρόσθετες Υπηρεσίες Ιστοσελίδας” πατώντας εδώ.

Εργασία

Επεξήγηση

Όροι

Πάγια έξοδα (ανά μήνα ή έτος για υπηρεσίες κλπ)

Κατοχύρωση επιθυμητού domain

Είναι η διεύθυνση του site σας, πχ: tositemou.com

Εάν έχετε ήδη δικό σας domain, θα προχωρήσουμε απευθείας στην

σύνδεση του με τον χώρο φιλοξενίας.

Τα πάγια έξοδα του domain δεν αφορούν την υπηρεσία μας και δεν

συμπεριλαμβάνονται στην προσφορά που θα λάβετε, πληρώνετε

απευθείας στον πάροχο και λαμβάνετε ξεχωριστό τιμολόγιο από εκεί.

Από 10€ / έτος έως 30€ / δύο έτη (αναλόγως κατάληξης gr, com κλπ)

Ρύθμιση Χώρου

φιλοξενίας ιστοσελίδας

Είναι ο χώρος που φιλοξενεί τα αρχεία σας

Εάν έχετε ήδη, ρυθμίζουμε τον υπάρχον, χωρίς να φέρουμε ευθύνη για μελλοντικά προβλήματα στο site σας και extra χρέωση για ζημιές λόγω αναβαθμίσεων ή server.

Εάν επιθυμείτε μπορείτε να αγοράσετε δικό μας ετήσιο πακέτο «Συντήρηση+Φιλοξενία» 190€ / έτος χωρίς να επιβαρύνεστε για τυχόν ζημιές λόγω αναβαθμίσεων.

Max Services Support & VPS Hosting + Unlimited Subdomains & email accounts (total 25GB HDD space): 20€/μήνα , 110€/6μηνο , 190€/έτος.

Εγκατάσταση & Ρύθμιση Πλατφόρμας (Wordpress, Joomla, Drupal, Opencart κλπ)

Είναι το λογισμικό της ιστοσελίδας σας

Ρύθμιση της ιστοσελίδας με τις βασικές πληροφορίες της επιχείρησης,

καθώς και κάθε απαραίτητη τεχνική ρύθμιση

Εγκατάσταση & διαμόρφωση

θέματος

Σκελετός/Theme/Template

Είναι ένα έτοιμο πρότυπο το οποίο διαμορφώνουμε στα μέτρα σας.

Αν επιθυμείτε κατασκευή Custom θέματος (εξ ολοκλήρου από το 0), η τελική τιμή κατασκευής του site θα συζητηθεί.

Κατασκευή / Ανάρτηση περιεχομένου ιστοσελίδας

Αφορά τις στατικές σελίδες (επικοινωνία, εταιρεία κλπ) + ανέβασμα υλικού (προϊόντα - άρθρα)

Έως 50 χειροκίνητα.

Έως 2000 μαζικά (εφόσον μας τα έχετε δώσει σε excel).

Για περισσότερα, η τελική τιμή θα συζητηθεί.

Προσθήκη όρων χρήσης, πολιτικής

απορρήτου και μπάρας GDPR

Είναι 100% νομικά απαραίτητο να αναρτήσουμε σε ειδικές σελίδες

που θα περιλαμβάνονται στο κάτω μενού του site σας, τους όρους

χρήσης και την πολιτική απορρήτου της ιστοσελίδας σας, καθώς

επίσης και ειδική αναδυόμενη μπάρα που εμφανίζεται στους νέους

επισκέπτες όπου θα πρέπει να αποδεχτούν τα cookies της

ιστοσελίδα σας.

Ιδιαίτερα στην Ευρώπη, ο νόμος GDPR σας υποχρεώνει να γίνουν

αυτές οι ενέργειες καθώς αφορά το προσωπικά δεδομένα του κάθε

επισκέπτη

Μπορείτε να επιλέξετε να προσθέσουμε αντιγραφή όρων και

πολιτικής από παρόμοια sites (αλλάζοντας φυσικά ονόματα και

διευθύνσεις) ή να επιλέξετε να μας στείλετε εσείς το περιεχόμενο και

να το αναρτήσουμε.

Πρέπει όμως να γνωρίζετε, πως σε καμία περίπτωση δεν φέρουμε

οποιαδήποτε νομική ή άλλη ευθύνη για το περιεχόμενο.

Μηχανισμός eshop (αν το επιθυμείτε)

· Εγκατάσταση & ρύθμιση μηχανισμού

· Ρύθμιση στοιχείων επιχείρησης (μεταφορικά, πληρωμές, φπα κ.α.)

· Design καταστήματος κλπ.

· Πωλήσεις Χονδρικής ή Dropship αν επιθυμείτε

Για την εισαγωγή προϊόντων, χρειάζεται να έχετε έτοιμα τα δεδομένα των προϊόντων σας (κωδικό, απόθεμα, τίτλο, φωτογραφία κλπ).

Εισάγουμε: Έως 50 χειροκίνητα.

Έως 2000 μαζικά (εφόσον μας τα έχετε δώσει σε excel).

Για περισσότερα, η τελική τιμή θα συζητηθεί.

Επιλέξτε Υπηρεσία Διαδικτύου

Σύντομα κοντά σας οι υπηρεσίες μέσα από την ιστοσελίδα!

Οι υπηρεσίες αφορούν το γραφείο εξυπηρέτησης στην Μακρακώμη Φθιώτιδας με εξυπηρέτηση για όλη την Ελλάδα.

Προς το παρόν μπορείτε να καλέσετε στα τηλέφωνα: +30 223 602 4107 & +30 698 630 7660

Επίσης μπορείτε να στείλετε email σε: max.makrakomi@gmail.com

Μερικές από τις υπηρεσίες μας

Σύντομα κοντά σας!

Μετάβαση στο περιεχόμενο