So I am running a Nextcloud 20 setup using docker-compose () Nextcloud working perfect, pointing the settings for Collabora office within Nextcloud gives me a green sign. I had this working with the same setup running NC 18.
I am using Swag as a reverse proxy, both pointing to the nextcloud containers.
But when trying to open a document - it just becomes a blank page.
Going to the Collabora URL gives me an simple - OK.
I am lost - what am I doing wrong here?
docker-compose-file:
version: β3.7β
services:
swag:
image: linuxserver/swag:latest
container_name: swag
cap_add:
- NET_ADMIN
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/ducktown
- URL=clouddomain.io
- SUBDOMAINS=wildcard
- VALIDATION=dns
- DNSPLUGIN=cloudflare
- EMAIL=my.own@domian.io
- STAGING=false
volumes:
- ./appdata/swag:/config
ports:
- 443:443
- 80:80
restart: unless-stopped
nextcloud:
image: linuxserver/nextcloud:latest
container_name: nextcloud
hostname: cloud
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Ducktown
volumes:
- ./appdata/nextcloud:/config
- Cloud:/data (An NFS mounted file array)
depends_on:
- mariadb
restart: unless-stopped
mariadb:
image: linuxserver/mariadb:latest
container_name: mariadb
environment:
- PUID=1000
- PGID=1000
- MYSQL_ROOT_PASSWORD=a-super-secret-passsword
- TZ=Europe/ducktown
volumes:
- ./appdata/mariadb:/config
ports:
- 3306:3306
restart: unless-stopped
collabora:
image: collabora/code:latest
container_name: collabora
hostname: office
environment:
- domain=office\.clouddomain\.io
- username=officeadmin
- password=another-super-secret-password
restart: unless-stopped
volumes:
- ./appdata/collabora:/config
ports:
- 9980:9980