Collabora plugins doesnot work on pydio cells

I run this command to deploy collabora:
docker run -t -d -p 9980:9980
-e “extra_params=–o:ssl.enable=false”
-e “domain=172\.16\.26\.233”
collabora/code

And I use this .yml file to deploy pydio:
version: ‘4’
services:

cells:
image: pydio/cells:latest
restart: unless-stopped
ports: [“8080:8080”]
volumes:
- /Users/clarkkent/pydio_cells/cellsdir:/var/cells
- /Users/clarkkent/pydio_cells/data:/var/cells/data

mysql:
image: mysql:8
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: 123456aB
MYSQL_DATABASE: cells
MYSQL_USER: pydio
MYSQL_PASSWORD: 123456aB
command: [mysqld, --character-set-server=utf8mb4, --collation-server=utf8mb4_unicode_ci]
volumes:
- /Users/clarkkent/pydio_cells/mysqldir:/var/lib/mysql

But I can not open the .doc file on the pydio cells website

If pydio uses https so must Collabora Online.
A secure https page can’t embed an insecure http iframe.

You need to setup ssl for Collabora Online too.

You can reuse the same Certificate authority you used for pydio, generate an SSL certficate for collabora Online domain and use it with:

--o:ssl.key_file_path="key.pem" \
--o:ssl.cert_file_path="cert.pem" \
--o:ssl.ca_file_path="ca-chain.cert.pem"
1 Like