diff --git a/self_hosting/services/collabora/README.md b/self_hosting/services/collabora/README.md
index b50059d..a025477 100644
--- a/self_hosting/services/collabora/README.md
+++ b/self_hosting/services/collabora/README.md
@@ -19,18 +19,29 @@ apt update
## Install packages
+Firstly, install Microsoft fonts such as Arial, Times, etc. (optional)
+Collabora's installation will look for system fonts and generate a
+systemplate, so, this will ensure MS fonts are available in collabora.
+
```shell
apt install ttf-mscorefonts-installer
```
+Install Collabora front and backend packages, plus spell checking
+
```shell
apt install coolwsd code-brand hunspell collaboraoffice*-dict-*
```
+## Configure nginx
+
+Add to `/etc/nginx/sites-available/collabora.conf`
+(change office.example.org with your domain):
+
```nginx
server {
listen 80;
- server_name office.tavo.one;
+ server_name office.example.org;
# static files
location ^~ /browser {
@@ -76,12 +87,61 @@ server {
}
```
+Enable nginx site.
-Edit ``/etc/nginx/sites-available/collabora.conf`` for languages and SSL
+```
+ln -s /etc/nginx/sites-available/collabora.conf /etc/nginx/sites-enabled/
+```
-## certbot
+Run this and select your domain.
-## Enable
+```
+certbot --nginx
+```
+
+Restart nginx to apply
+
+```
+systemctl restart nginx
+```
+
+## Edit ``/etc/coolwsd/coolwsd.xml``
+
+### Languages
+
+Add or remove languages, for example, here I set only `es_ES en_US de_DE fr_FR`.
+This can impact performance, aim for few languages.
+
+```xml
+...
+es_ES en_US de_DE fr_FR
+...
+```
+
+### SSL Termination
+
+Configure SSL using reverse proxy, secure and fast.
+
+Here I set SSL to false:
+
+```
+...
+
+
+ false
+...
+```
+
+Here I set termination to true:
+
+```
+...
+
+true
+...
+```
+
+## Enable coolwsd
```shell
systemctl enable --now coolwsd