OpenCloud: Difference between revisions
m Add links to OpenCloud and Radicale |
I added a section for people wanting to install Collabora Online and extra fonts on OpenCloud, as it is tricky. |
||
| (One intermediate revision by one other user not shown) | |||
| Line 48: | Line 48: | ||
proxyPass = "http://127.0.0.1:5232"; | proxyPass = "http://127.0.0.1:5232"; | ||
extraConfig = " | extraConfig = " | ||
proxy_set_header X-Remote-User $remote_user; # provide username to | proxy_set_header X-Remote-User $remote_user; # provide username to CardDAV | ||
proxy_set_header X-Script-Name /carddav; | proxy_set_header X-Script-Name /carddav; | ||
"; | "; | ||
| Line 55: | Line 55: | ||
proxyPass = "http://127.0.0.1:5232"; | proxyPass = "http://127.0.0.1:5232"; | ||
extraConfig = " | extraConfig = " | ||
proxy_set_header X-Remote-User $remote_user; # provide username to | proxy_set_header X-Remote-User $remote_user; # provide username to CardDAV | ||
proxy_set_header X-Script-Name /carddav; | proxy_set_header X-Script-Name /carddav; | ||
"; | "; | ||
| Line 92: | Line 92: | ||
}; | }; | ||
}; | }; | ||
</syntaxhighlight> | |||
==== Collabora online ==== | |||
There are several quirks if you want a working WOPI setup with Collabora Online [https://www.collaboraonline.com/]. | |||
First, you can enable the wopi part of opencloud with : <syntaxhighlight> | |||
OC_ADD_RUN_SERVICES=collaboration | |||
COLLABORATION_APP_NAME=Office | |||
COLLABORATION_APP_PRODUCT=Collabora | |||
COLLABORATION_APP_ADDR=http://[::1]:9980 | |||
COLLABORATION_APP_INSECURE=true | |||
COLLABORATION_WOPI_SRC=https://cloud.yourdomain.com | |||
COLLABORATION_APP_PROOF_DISABLE=true | |||
</syntaxhighlight>The plain config equivalent is easy to find in [https://docs.opencloud.eu/docs/dev/server/services/collaboration/yaml-config Opencloud's documentation]. | |||
Now when you launch OpenCloud with that, it will not allow Collabora to be embedded. For that, you need to override the CSP with the following options: <syntaxhighlight lang="nix"> | |||
{ | |||
opencloud = { | |||
environmentFile = config.age.secrets.opencloudEnv.path; # The file with the env mentioned above | |||
settings = { | |||
# An override of the default CSP: every parameter has to be re-written, default can be found on opencloud's compose files | |||
csp = { | |||
directives = { | |||
child-src = [ | |||
"'self'" | |||
]; | |||
connect-src = [ | |||
"'self'" | |||
"blob:" | |||
"https://\${COMPANION_DOMAIN|companion.opencloud.test}\${TRAEFIK_PORT_HTTPS}/" | |||
"wss://\${COMPANION_DOMAIN|companion.opencloud.test}\${TRAEFIK_PORT_HTTPS}/" | |||
"https://raw.githubusercontent.com/opencloud-eu/awesome-apps/" | |||
"https://\${IDP_DOMAIN|keycloak.opencloud.test}\${TRAEFIK_PORT_HTTPS}/" | |||
"https://update.opencloud.eu/" | |||
]; | |||
default-src = [ | |||
"'none'" | |||
]; | |||
font-src = [ | |||
"'self'" | |||
]; | |||
frame-ancestors = [ | |||
"'self'" | |||
]; | |||
frame-src = [ | |||
"'self'" | |||
"blob:" | |||
"https://embed.diagrams.net" | |||
# Here is the culprit, put your own office service's URL | |||
"https://office.yourdomain.com" | |||
# This is needed for the external-sites web extension when embedding sites | |||
"https://docs.opencloud.eu" | |||
]; | |||
img-src = [ | |||
"'self'" | |||
"data:" | |||
"blob:" | |||
"https://raw.githubusercontent.com/opencloud-eu/awesome-apps/" | |||
"https://tile.openstreetmap.org/" | |||
]; | |||
manifest-src = [ | |||
"'self'" | |||
]; | |||
media-src = [ | |||
"'self'" | |||
]; | |||
object-src = [ | |||
"'self'" | |||
"blob:" | |||
]; | |||
script-src = [ | |||
"'self'" | |||
"'unsafe-inline'" | |||
"https://\${IDP_DOMAIN|keycloak.opencloud.test}\${TRAEFIK_PORT_HTTPS}/" | |||
]; | |||
style-src = [ | |||
"'self'" | |||
"'unsafe-inline'" | |||
]; | |||
}; | |||
}; | |||
proxy = { | |||
# Tell your proxy to look at that CSP file you created | |||
csp_config_file_location = "/etc/opencloud/csp.yaml"; | |||
} | |||
]; | |||
}; | |||
}; | |||
}; | |||
}; | |||
} | |||
</syntaxhighlight>Now it works, you can open and edit your files, nice. However, when you open them, the font might not be appearing. | |||
CollaboraOnline will likely list fonts from your system, but not be able to display them. | |||
For this, you have 2 options : [https://github.com/CollaboraOnline/fontserver run a font server on your server] | |||
Or use bindings. | |||
So what happens is that in order to be able to display your fonts, Collabora needs them to be installed not merely on its systemplate but also on the host, and it looks at a specific dir. | |||
This snippet is the one I used : <syntaxhighlight lang="nix"> | |||
fileSystems."/usr/share/fonts/collabora" = | |||
let | |||
fontDir = pkgs.symlinkJoin { | |||
name = "collabora-fonts"; | |||
paths = with pkgs; [ | |||
nerd-fonts.departure-mono | |||
corefonts | |||
]; | |||
}; | |||
in | |||
{ | |||
device = "${fontDir}/share/fonts"; | |||
options = [ "bind" ]; | |||
}; | |||
</syntaxhighlight> | </syntaxhighlight> | ||