2017-09-05 16:39:30 +02:00
|
|
|
location / {
|
2017-06-21 11:34:24 +02:00
|
|
|
|
2018-02-05 19:09:21 +01:00
|
|
|
rewrite ^/$ https://__DOMAIN__/loleaflet/dist/admin/admin.html permanent;
|
2017-06-21 11:34:24 +02:00
|
|
|
# static files
|
|
|
|
location ^~ /loleaflet {
|
2018-02-05 20:57:06 +01:00
|
|
|
proxy_pass http://localhost:9980;
|
2017-06-21 11:34:24 +02:00
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
}
|
|
|
|
|
|
|
|
# WOPI discovery URL
|
|
|
|
location ^~ /hosting/discovery {
|
2018-02-05 20:57:06 +01:00
|
|
|
proxy_pass http://localhost:9980;
|
2017-06-21 11:34:24 +02:00
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Main websocket
|
|
|
|
location ~ /lool/(.*)/ws$ {
|
2018-02-05 20:57:06 +01:00
|
|
|
proxy_pass http://localhost:9980;
|
2017-06-21 11:34:24 +02:00
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection "Upgrade";
|
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
proxy_read_timeout 36000s;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Admin Console websocket
|
|
|
|
location ^~ /lool/adminws {
|
2018-02-05 20:57:06 +01:00
|
|
|
proxy_pass http://localhost:9980;
|
2017-06-21 11:34:24 +02:00
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection "Upgrade";
|
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
proxy_read_timeout 36000s;
|
|
|
|
}
|
|
|
|
|
|
|
|
# download, presentation and image upload
|
|
|
|
location ^~ /lool {
|
2018-02-05 20:57:06 +01:00
|
|
|
proxy_pass http://localhost:9980;
|
2017-06-21 11:34:24 +02:00
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
}
|
2018-02-05 21:38:27 +01:00
|
|
|
|
|
|
|
|
|
|
|
}
|