Allow several domains for Collabora?

Hi, I just looked in the source code of LibreOffice online and found that the domain is actually parsed as a perl regeluar expression.

This means you can allow different domains. You just have to concatenate them with “|” between. So lets say i want srv01.be and srv02.be to be allowed I use:

docker run -t -d -p 127.0.0.1:9980:9980 -e “domain=srv01.be|srv02.be” --restart always --cap-add MKNOD collabora/code

Be careful with spaces, since that didn’t worked for me.

6 Likes