Hello! Uhhh I’ve been trying to set up a collabora-online server in a local old laptop where I installed ubuntu, It took me some days to set the Nexcloud server, and then the collabora one between proxy issues and dns records
I’ve barely done anything with linux and know next to nothing at a technical level and english is not my native language so any try to solve my problem as been overwhelming. But I’ll try to provide as much information as possible so I’m not a pain for you all
I’ve managed to set up my DNS records (i use AAA ones since my ISP doenst provide a public ipv4) and im using
Ubuntu 22.04.5 LTS
Nextcloud 30.0.05
Collabora Online Development Edition 24.04.12.3
Nginx Proxy Manager
Cloudflare for my domain
Docker-compose.yml
version: '2.2'
services:
nginxproxymanager:
image: 'jc21/nginx-proxy-manager:latest'
container_name: nginx
restart: unless-stopped
ports:
- '80:80'
- '81:81'
- '443:443'
volumes:
- ./nginx/data:/data
- ./nginx/letsencrypt:/etc/letsencrypt
networks:
- mynetwork
nextcloud:
image: lscr.io/linuxserver/nextcloud:latest
container_name: nextcloud
environment:
- PUID=1000
- PGID=1000
- TZ=America/Mexico_City
volumes:
- ./nextcloud/appdata:/config
- ./nextcloud/data:/data
restart: unless-stopped
networks:
- mynetwork
collabora:
image: collabora/code:latest
container_name: collabora
restart: unless-stopped
environment:
- aliasgroup1=cloud\.domain\.com
- PUID=1000
- PGID=1000
- username=username
- password=password
- DONT_GEN_SSL_CERT=1
- extra_params=--o:ssl.enable=false --o:ssl.termination=true
ports:
- '9980:9980'
volumes:
- ./collabora/etc:/etc/coolwsd
networks:
- mynetwork
networks:
mynetwork:
enable_ipv6: true
driver: bridge
ipam:
config:
- subnet: 172.20.0.0/16
- subnet: 2001:db8:1::/64
coolwsd.xml
<!-- -*- nxml-child-indent: 4; tab-width: 4; indent-tabs-mode: nil -*- -->
<config>
<server_name>collabora.domain.com</server_name>
<port>9980</port>
<wopi desc="Allow/deny wopi storage. Mutually exclusive with webdav." allow="true"></wopi>
<host allow="true">https://cloud\.domain\.com:443</host>
<host allow="true">localhost</host>
</config>
Logs from the Collabora’s docker
Ready to accept connections on port 9980.
wsd-00001-00001 2025-02-20 17:37:13.606273 +0000 [ coolwsd ] TRC Have 1 new children.| wsd/COOLWSD.cpp:3684
wsd-00001-00001 2025-02-20 17:37:13.606286 +0000 [ coolwsd ] INF WSD initialization complete: setting log-level to [warning] as configured.| wsd/COOLWSD.cpp:3699
wsd-00001-00001 2025-02-20 17:37:13.606901 +0000 [ coolwsd ] WRN Waking up dead poll thread [main], started: false, finished: false| net/Socket.hpp:824
frk-00014-00014 2025-02-20 17:37:13.628240 +0000 [ forkit ] WRN The systemplate directory [/opt/cool/systemplate] is read-only, and at least [/opt/cool/systemplate//etc/hosts] is out-of-date. Will have to clone dynamic elements of systemplate to the jails. To restore optimal performance, make sure the files in [/opt/cool/systemplate/etc] are up-to-date.| common/JailUtil.cpp:590
frk-00014-00014 2025-02-20 17:37:13.687280 +0000 [ forkit ] WRN The systemplate directory [/opt/cool/systemplate] is read-only, and at least [/opt/cool/systemplate//etc/hosts] is out-of-date. Will have to clone dynamic elements of systemplate to the jails. To restore optimal performance, make sure the files in [/opt/cool/systemplate/etc] are up-to-date.| common/JailUtil.cpp:590
frk-00014-00014 2025-02-20 17:37:13.785856 +0000 [ forkit ] WRN The systemplate directory [/opt/cool/systemplate] is read-only, and at least [/opt/cool/systemplate//etc/hosts] is out-of-date. Will have to clone dynamic elements of systemplate to the jails. To restore optimal performance, make sure the files in [/opt/cool/systemplate/etc] are up-to-date.| common/JailUtil.cpp:590
wsd-00001-00021 2025-02-20 17:39:15.990555 +0000 [ websrv_poll ] ERR No authorized hosts found matching the target host [cloud.domain.com] in config| wsd/RequestVettingStation.cpp:97
wsd-00001-00021 2025-02-20 17:39:16.067496 +0000 [ websrv_poll ] ERR #30: No authorized hosts found matching the target host [cloud.domain.com] in config| wsd/RequestVettingStation.cpp:267
wsd-00001-00021 2025-02-20 17:39:16.249071 +0000 [ websrv_poll ] ERR #30: No authorized hosts found matching the target host [cloud.domain.com] in config| wsd/RequestVettingStation.cpp:267
Image of the Admin > Office panel in Nextcloud:
What have I tried?
Almost anything I can think of, ive been editing both coolwsd.xml and docker-compose, scrambling through this forum’s responses, but no results, heres a list of some of the things ive tried
- Add the domain as
https://cloud.domain.com
,https://cloud\\.domain\\.com
,https://cloud\.domain\.com
andcloud.domain.com
to both the domain (which i think is depricated?) and aliasgroup1 (Individually) indocker-compose.yml
- Do the same for the hosts in
coolwsd.xml
- Add hosts inside the WOPI “category?” (sorry I don’t know its name, the element in xml) and a net one too
- I’ve already did a curl to both domains from my server, it works
If relevant here are some screenshots of my Nginx Panel for the collabora proxy (Everything is the same for the cloud one except for websockets and http being https):
(I tried to add a custom nginx configuration on the advanced tab, but I never managed to make collabora’s proxy be online whenever I tried it)
Sorry if i missed some part of crucial information, for me this is everything I’ve moved around so the solution might be lying anything, and sorry for the bad english '. .) I appreciate if anyone has even stuck this far to read this.