Hi,
After installing a fresh 6.2.0 with collabora behind external proxy, everything works fine expects apps are not loading.
I've put all extracted zip in the correct place and set the access rights.
I'm trying to have these apps working:
- drawio
- pastbin
- unzip
- markdown-presentation-viewer
On my last install, drawio was working just fine.
Here is my redacted docker compose:
services:
collabora:
container_name: collabora
cap_add:
- SYS_ADMIN
command:
- coolconfig generate-proof-key && /start-collabora-online.sh
entrypoint:
- /bin/bash
- -c
environment:
DONT_GEN_SSL_CERT: "YES"
aliasgroup1: REDACTED
extra_params: |
--o:ssl.enable=false \
--o:ssl.ssl_verification=false \
--o:ssl.termination=true \
--o:welcome.enable=false \
--o:net.frame_ancestors=opencloud.debure.eu \
--o:net.lok_allow.host[14]=opencloud.debure.eu \
--o:home_mode.enable=false \
--o:security.seccomp=false #Needed on synology otherwise collabora do not init
password: REDACTED
username: REDACTED
healthcheck:
test:
- CMD
- bash
- -c
- "exec 3<>/dev/tcp/127.0.0.1/9980 && printf 'GET /hosting/discovery HTTP/1.1\r\nHost: localhost\r\nConnection: close\r\n\r\n' >&3 && cat <&3 | head -1 | grep -q '200 OK'"
timeout: 10s
interval: 15s
retries: 5
image: collabora/code:26.04.1.4.1
networks:
- net
ports:
- 9980:9980
restart: always
security_opt:
- seccomp=unconfined
- apparmor:unconfined
opencloud:
container_name: opencloud
command:
- -c
- opencloud init || true; opencloud server
entrypoint:
- /bin/sh
environment:
COLLABORA_DOMAIN: REDACTED
COLLABORATION_APP_ADDR: REDACTED
COLLABORATION_APP_ICON: https://REDACTED/favicon.ico
COLLABORATION_APP_INSECURE: "true"
COLLABORATION_APP_NAME: CollaboraOnline
COLLABORATION_APP_PRODUCT: Collabora
COLLABORATION_CS3API_DATAGATEWAY_INSECURE: "true"
COLLABORATION_WOPI_SRC: https://REDACTED
FRONTEND_APP_HANDLER_SECURE_VIEW_APP_ADDR: eu.opencloud.api.collaboration
FRONTEND_ARCHIVER_MAX_SIZE: "10000000000"
FRONTEND_CHECK_FOR_UPDATES: "true"
GRAPH_AVAILABLE_ROLES: b1e2218d-eef8-4d4c-b82d-0f1a1b48f3b5,a8d5fe5e-96e3-418d-825b-534dbdf22b99,fb6c3e19-e378-47e5-b277-9732f9de6e21,58c63c02-1d89-4572-916a-870abc5a1b7d,2d00ce52-1fc2-4dbc-8b95-a73b73395f5a,1c996275-f1c9-4e71-abdf-a42f6495e960,312c0871-5ef7-4b3a-85b6-0e4074c64049,aa97fe03-7980-45ac-9e50-b325749fd7e6
IDM_ADMIN_PASSWORD: REDACTED
IDM_CREATE_DEMO_USERS: "false"
NOTIFICATIONS_SMTP_AUTHENTICATION: ""
NOTIFICATIONS_SMTP_ENCRYPTION: none
NOTIFICATIONS_SMTP_HOST: ""
NOTIFICATIONS_SMTP_INSECURE: "false"
NOTIFICATIONS_SMTP_PASSWORD: ""
NOTIFICATIONS_SMTP_PORT: ""
NOTIFICATIONS_SMTP_SENDER: OpenCloud Notifications <notifications@cloud.opencloud.test>
NOTIFICATIONS_SMTP_USERNAME: ""
OC_ADD_RUN_SERVICES: collaboration
OC_DEFAULT_LANGUAGE: ""
OC_INSECURE: "true"
OC_LOG_COLOR: "false"
OC_LOG_LEVEL: info
OC_LOG_PRETTY: "false"
OC_PASSWORD_POLICY_BANNED_PASSWORDS_LIST: banned-password-list.txt
OC_PASSWORD_POLICY_DISABLED: "false"
OC_PASSWORD_POLICY_MIN_CHARACTERS: "8"
OC_PASSWORD_POLICY_MIN_DIGITS: "1"
OC_PASSWORD_POLICY_MIN_LOWERCASE_CHARACTERS: "1"
OC_PASSWORD_POLICY_MIN_SPECIAL_CHARACTERS: "1"
OC_PASSWORD_POLICY_MIN_UPPERCASE_CHARACTERS: "1"
OC_SHARING_PUBLIC_SHARE_MUST_HAVE_PASSWORD: "true"
OC_SHARING_PUBLIC_WRITEABLE_SHARE_MUST_HAVE_PASSWORD: "false"
OC_URL: https://REDACTED
PROXY_CSP_CONFIG_FILE_LOCATION: /etc/opencloud/csp.yaml
PROXY_ENABLE_BASIC_AUTH: "false"
PROXY_HTTP_ADDR: 0.0.0.0:9200
PROXY_TLS: "false"
TRAEFIK_PORT_HTTPS: ""
image: opencloudeu/opencloud-rolling:6.2.0
networks:
- net
ports:
- 9200:9200
restart: always
user: 1000:1000
volumes:
- /volume1/docker/opencloud/config/opencloud/csp.yaml:/etc/opencloud/csp.yaml
- /volume1/docker/opencloud/config/opencloud/banned-password-list.txt:/etc/opencloud/banned-password-list.txt
- config:/etc/opencloud
- data:/var/lib/opencloud
- /volume1/docker/opencloud/config/opencloud/apps:/var/lib/opencloud/web/assets/apps
networks:
net:
volumes:
config:
data:
Hi,
After installing a fresh 6.2.0 with collabora behind external proxy, everything works fine expects apps are not loading.
I've put all extracted zip in the correct place and set the access rights.
I'm trying to have these apps working:
On my last install, drawio was working just fine.
Here is my redacted docker compose: