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

20 lines
506 B
Nginx Configuration File
Raw Normal View History

2018-11-04 19:01:40 +01:00
# static files
location ^~ /loleaflet {
proxy_pass https://localhost:__PORT__;
proxy_set_header Host $http_host;
}
2017-06-21 11:34:24 +02:00
2018-11-04 19:01:40 +01:00
# WOPI discovery URL
location ^~ /hosting/discovery {
proxy_pass https://localhost:__PORT__;
proxy_set_header Host $http_host;
}
2017-06-21 11:34:24 +02:00
2018-11-04 19:01:40 +01:00
# websockets, download, presentation and image upload
location ^~ /lool {
proxy_pass https://localhost:__PORT__;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $http_host;
2018-02-05 21:38:27 +01:00
}