1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/collabora_ynh.git synced 2024-09-03 18:16:25 +02:00
collabora_ynh/conf/nginx.conf

53 lines
1.5 KiB
Nginx Configuration File
Raw Normal View History

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.";
}
2018-11-04 19:01:40 +01:00
# static files
2021-12-22 19:02:29 +01:00
location ^~ /browser {
2019-02-06 09:14:06 +01:00
proxy_pass http://localhost:__PORT__;
2018-11-04 19:01:40 +01:00
proxy_set_header Host $http_host;
2019-02-27 20:38:20 +01:00
more_set_headers "X-Frame-Options: ALLOWALL";
2018-11-04 19:01:40 +01:00
}
2017-06-21 11:34:24 +02:00
2018-11-04 19:01:40 +01:00
# WOPI discovery URL
location ^~ /hosting/discovery {
2019-02-06 09:14:06 +01:00
proxy_pass http://localhost:__PORT__;
2018-11-04 19:01:40 +01:00
proxy_set_header Host $http_host;
2019-02-27 20:38:20 +01:00
more_set_headers "X-Frame-Options: ALLOWALL";
2018-11-04 19:01:40 +01:00
}
2017-06-21 11:34:24 +02:00
# Capabilities
location ^~ /hosting/capabilities {
2019-02-06 09:14:06 +01:00
proxy_pass http://localhost:__PORT__;
proxy_set_header Host $http_host;
2019-02-27 20:38:20 +01:00
more_set_headers "X-Frame-Options: ALLOWALL";
}
# main websocket
2021-12-22 19:02:29 +01:00
location ~ ^/cool/(.*)/ws$ {
2019-02-06 09:14:06 +01:00
proxy_pass http://localhost:__PORT__;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $http_host;
proxy_read_timeout 36000s;
2019-02-27 20:38:20 +01:00
more_set_headers "X-Frame-Options: ALLOWALL";
}
# download, presentation and image upload
2021-12-22 19:02:29 +01:00
location ~ ^/(c|l)ool {
2019-02-06 09:14:06 +01:00
proxy_pass http://localhost:__PORT__;
proxy_set_header Host $http_host;
2019-02-27 20:38:20 +01:00
more_set_headers "X-Frame-Options: ALLOWALL";
}
# Admin Console websocket
2021-12-22 19:02:29 +01:00
location ^~ /cool/adminws {
2019-02-06 09:14:06 +01:00
proxy_pass http://localhost:__PORT__;
2018-11-04 19:01:40 +01:00
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
2018-11-04 19:01:40 +01:00
proxy_set_header Host $http_host;
proxy_read_timeout 36000s;
2018-02-05 21:38:27 +01:00
}