Skip to main content

Collabora Code

502 Gateway errors when trying to connect to Collabora Code

If you are running behind a reverse proxy you may need to add the extra_params Variable.

Examples:

  1. If using environment files such as .collabora.env, you add the following to that .env file.
extra_params=--o:ssl.enable=false --o:ssl.termination=true
  1. If using the environment inside of docker-compose.yaml It would look something like
name: nextcloud

services:
collabora:
container_name: collabora
hostname: collabora
privileged: true
tty: true
ports:
- 9980:9980
cap_add:
- MKNOD
image: collabora/code:latest
environment:
- extra_params=--o:ssl.enable=false --o:ssl.termination=true
restart: always


Hi, how can I help you?