mirror of
https://github.com/YunoHost-Apps/collabora_ynh.git
synced 2024-09-03 18:16:25 +02:00
52 lines
1.5 KiB
Nginx Configuration File
52 lines
1.5 KiB
Nginx Configuration File
rewrite ^$ /;
|
|
location ~ ^/$ {
|
|
default_type text/plain;
|
|
return 200 "This is where Collabora Online is installed. To actually be useful, this needs to be integrated in a front-end such as Nextcloud for example.";
|
|
}
|
|
|
|
# static files
|
|
location ^~ /browser {
|
|
proxy_pass http://localhost:__PORT__;
|
|
proxy_set_header Host $host;
|
|
more_set_headers "X-Frame-Options: ALLOWALL";
|
|
}
|
|
|
|
# WOPI discovery URL
|
|
location ^~ /hosting/discovery {
|
|
proxy_pass http://localhost:__PORT__;
|
|
proxy_set_header Host $host;
|
|
more_set_headers "X-Frame-Options: ALLOWALL";
|
|
}
|
|
|
|
# Capabilities
|
|
location ^~ /hosting/capabilities {
|
|
proxy_pass http://localhost:__PORT__;
|
|
proxy_set_header Host $host;
|
|
more_set_headers "X-Frame-Options: ALLOWALL";
|
|
}
|
|
|
|
# main websocket
|
|
location ~ ^/cool/(.*)/ws$ {
|
|
proxy_pass http://localhost:__PORT__;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
proxy_set_header Host $host;
|
|
proxy_read_timeout 36000s;
|
|
more_set_headers "X-Frame-Options: ALLOWALL";
|
|
}
|
|
|
|
# download, presentation and image upload
|
|
location ~ ^/(c|l)ool {
|
|
proxy_pass http://localhost:__PORT__;
|
|
proxy_set_header Host $host;
|
|
more_set_headers "X-Frame-Options: ALLOWALL";
|
|
}
|
|
|
|
# Admin Console websocket
|
|
location ^~ /cool/adminws {
|
|
proxy_pass http://localhost:__PORT__;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
proxy_set_header Host $host;
|
|
proxy_read_timeout 36000s;
|
|
}
|