2021-01-09 23:59:37 +01:00
|
|
|
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
|
|
|
|
2019-01-31 00:19:51 +01:00
|
|
|
# Capabilities
|
|
|
|
location ^~ /hosting/capabilities {
|
2019-02-06 09:14:06 +01:00
|
|
|
proxy_pass http://localhost:__PORT__;
|
2019-01-31 00:19:51 +01:00
|
|
|
proxy_set_header Host $http_host;
|
2019-02-27 20:38:20 +01:00
|
|
|
more_set_headers "X-Frame-Options: ALLOWALL";
|
2019-01-31 00:19:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# 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__;
|
2019-01-31 00:19:51 +01:00
|
|
|
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";
|
2019-01-31 00:19:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# 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__;
|
2019-01-31 00:19:51 +01:00
|
|
|
proxy_set_header Host $http_host;
|
2019-02-27 20:38:20 +01:00
|
|
|
more_set_headers "X-Frame-Options: ALLOWALL";
|
2019-01-31 00:19:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# 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;
|
2019-01-31 00:19:51 +01:00
|
|
|
proxy_set_header Connection "Upgrade";
|
2018-11-04 19:01:40 +01:00
|
|
|
proxy_set_header Host $http_host;
|
2019-01-31 00:19:51 +01:00
|
|
|
proxy_read_timeout 36000s;
|
2018-02-05 21:38:27 +01:00
|
|
|
}
|