We are currently testing Collabora Online as a replacement for OOS in SharePoint. So far, everything works except for two things. We use a nginx as a reverse proxy. For the test, we are using the CODE image.
#nginx.conf
location ^~ /hosting/discovery {
proxy_pass http://collabora:9980;
proxy_set_header Host $http_host;
}
location ^~ /browser {
proxy_pass http://collabora:9980;
proxy_set_header Host $http_host;
}
location ^~ /hosting/capabilities {
proxy_pass http://collabora:9980;
proxy_set_header Host $http_host;
}
location ~ ^/cool/ {
proxy_pass http://collabora:9980;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $http_host;
proxy_read_timeout 36000s;
}
location / {
proxy_pass http://collabora:9980;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $http_host;
proxy_read_timeout 36000s;
}
#compose.yaml
collabora:
image: collabora/code:25.04.9.4.1
container_name: collabora
user: "1001:1001"
cap_drop:
- ALL
cap_add:
- SYS_CHROOT
- SYS_ADMIN
- FOWNER
- CHOWN
volumes:
- ./collabora/proof_key:/etc/coolwsd/proof_key
- ./collabora/proof_key.pub:/etc/coolwsd/proof_key.pub
environment:
- aliasgroup1=https://XXX.XXX.XX
- username=admin
- password=${COL_ADMIN_PW}
- server_name=XXX.XXX.XX
- extra_params= >
--o:ssl.enable=false
--o:ssl.termination=true
--o:ssl.verification=true
--o:logging.level=information
--o:security.enable_macros_execution=true
--o:security.macro_security_level=1
--o:watermark.opacity=0.1
--o:watermark.text=EXAMPLE-WATERMARK
--o:accessibility.enable=true
-
Screen Reader - No audio output
Using extra_params, we activate the screen reader. As expected, the necessary language packages are already installed in the image. The button appears (under help menu) and can also be pressed. Unfortunately, we do not get any audio output. Unfortunately, the container log does not contain any indications of whether there are server-side problems either. -
UI Language - Configuration how?
I am not entirely clear on how to permanently change the UI language. Currently in the browser, collabora online is in english. Language settings in the browser are primarily german. Is there an explicit section about it in the documentation?
Making sure you're not a bot! â &lang=de? â No change if applied
coolwsd.xml â allowed_languages?
Thank you very much for your cool software. Maybe you can help me.
