mirror of
https://github.com/YunoHost-Apps/collabora_ynh.git
synced 2024-09-03 18:16:25 +02:00
19 lines
506 B
Nginx Configuration File
19 lines
506 B
Nginx Configuration File
# static files
|
|
location ^~ /loleaflet {
|
|
proxy_pass https://localhost:__PORT__;
|
|
proxy_set_header Host $http_host;
|
|
}
|
|
|
|
# WOPI discovery URL
|
|
location ^~ /hosting/discovery {
|
|
proxy_pass https://localhost:__PORT__;
|
|
proxy_set_header Host $http_host;
|
|
}
|
|
|
|
# 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;
|
|
}
|