Need help with this connection 0%

Who can help me for this?
I run a collabora online server with docker(9980) on http

sudo docker run -d --name collabora-9980-v -p 9980:9980 -e "domain=[test-collabora](http://test-collabora.skywork.ai/).mydomain.com" -e "username=admin" -e "password=admin" -e "extra_params=--o:ssl.enable=false --o:logging.file=true --o:logging.file.path=/var/log/coolwsd.log --o:ssl.termination=true" -v /etc/coolwsd/coolwsd.xml:/etc/coolwsd/coolwsd.xml -v /var/log/coolwsd.log:/var/log/coolwsd.log --cap-add MKNOD --restart unless-stopped collabora/code:24.04.13.2.1

and a nginx to https(443)
I can use http://{ip}:9980/ to view and edit documents but it went wrong on https://{mydomain},just like this

hii @fishstormX welcome to collabora online community

Sure! To better diagnose what’s going wrong with your Collabora Online setup over HTTPS, could you please provide the following logs and details?

1. Browser Console Output

Open your site in Chrome/Firefox and press F12, then go to the Console tab. Look for:

  • WebSocket connection errors
  • CORS or security-related frame violations
  • (A screenshot or copy-paste of the errors will help)

2. Collabora Docker Logs

Run the following command on your server and share the output (especially lines that look like errors):

docker logs collabora-9980-v --tail 100

3. (Optional): Your Nginx config

This will help us check if it’s forwarding WebSocket and HTTPS traffic correctly. You can blur/remove sensitive paths/keys if needed.

Thanks
Darshan

and I also can view admin.html、/hosting/discovery on https ……

Thanks ,I got this docker log:

wsd-00001-00058 2025-04-10 07:35:10.063416 +0000 [ docbroker_006 ] WRN  #34: Unassociated Kit (49) disconnected unexpectedly| wsd/COOLWSD.cpp:2924
wsd-00001-00058 2025-04-10 07:35:10.063450 +0000 [ docbroker_006 ] WRN  #34: Unknown Kit process closed with pid -1| wsd/COOLWSD.cpp:2935
frk-00020-00020 2025-04-10 07:35:10.063583 +0000 [ forkit ] WRN  Child 49 was killed, with status 9| kit/ForKit.cpp:347
frk-00020-00020 2025-04-10 07:35:10.063641 +0000 [ forkit ] WRN  Successfully sent 'segfaultcount' message segfaultcount=0 killedcount=1 oomkilledcount=0
| kit/ForKit.cpp:409
frk-00020-00020 2025-04-10 07:35:11.266387 +0000 [ forkit ] WRN  The systemplate directory [/opt/cool/systemplate] is read-only, and at least [/opt/cool/systemplate//etc/passwd] is out-of-date. Will have to clone dynamic elements of systemplate to the jails. To restore optimal performance, make sure the files in [/opt/cool/systemplate/etc] are up-to-date.| common/JailUtil.cpp:587

and here‘s my nginx config(I hide my domain):

worker_processes  1;
events {
    worker_connections  1024;
}
http {

    sendfile        on;
     
    keepalive_timeout  65;
    server {
 listen       443 ssl;
 server_name  test-collabora.mydomain.com;


 ssl_certificate /etc/coolwsd/cert.pem;
 ssl_certificate_key /etc/coolwsd/key.pem;
# according:https://sdk.collaboraonline.com/docs/installation/Proxy_settings.html#reverse-proxy-settings-in-nginx-config-ssl-termination

}
}

on web page ,I also see many js error ,but also on http page:

I fix this ,I just find the problem on my chrome plugin,I deleted it and is worked Tks

1 Like