Collabora Web-Editor lädt nicht

Ich bin nach Update meiner Nextcloud-Installation freigegeben via Reverse Proxy (Swag/Nginx) als Docker-Container in Ubuntu LTS 20.4 auf die neueste Version bei der Einrichtung von Collabora (eingebaute CODE). Nach Aktivierung habe ich die Einstellungen angeschaut und festgestellt, dass bereits der eingebaute CODE angewählt wurde. Wenn ich jedoch ein Dokument öffne, lädt dieses nicht. Im Nextcloud Container Log habe ich keine Fehler gemeldet bekommen. Was habe ich verpasst? Welche Log-Files werden zur Behebung benötigt?

Salutti. Konnte das Problem lösen. Die Ursache lag mutmasslich daran, dass Collabora davon ausging, dass das mit dem Container generierte SSL-Zertifikat verwendet wird. Bei Nutzung von Swag wird dies jedoch über Swag gehandhabt. Nachfolgend findet ihr das docker-compose.yaml, welches ich über Portainer als Stack eingesetzt habe.

version: "3"

services:
  collabora:
    image: collabora/code:latest
    container_name: collabora
    ports:
    - "9980:9980"
    environment:
      - "domain=nextcloud\\.yourdomainname\\.whatever" #url of your nextcloud with \\ in front of points to signal that the point has to be interpreted as such, and not as a regular expression
      - "server_name=collabora\\.yourdomainname\\.whatever" #url of your collabora with \\ in front of points to signal that the point has to be interpreted as such, and not as a regular expression
      - "extra_params=o:ssl.enable=false o:ssl.termination=true" #this part tells collabora to not generate and not use the self-generated ssl certificate, which is fine if you use Swag
    restart: unless-stopped
    volumes:
    - /docker-containers/collabora:/config #as far as i understood, collabora has no config path. therefore you can leave this one out
    labels:
    - "com.centurylinklabs.watchtower.enable=true" #use this parameter in case you run watchtower to automatically update the container in the intervals you defined