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.3 KiB
Nginx Configuration File

# rewrite ^$ / permanent;
# static files
location ^~ /browser {
proxy_pass http://localhost:__PORT__;
proxy_set_header Host $host;
more_set_headers "X-Frame-Options: ALLOWALL";
}
# WOPI discovery URL
location ^~ /hosting/discovery {
proxy_pass http://localhost:__PORT__;
proxy_set_header Host $host;
more_set_headers "X-Frame-Options: ALLOWALL";
}
# Capabilities
location ^~ /hosting/capabilities {
proxy_pass http://localhost:__PORT__;
proxy_set_header Host $host;
more_set_headers "X-Frame-Options: ALLOWALL";
}
# main websocket
location ~ ^/cool/(.*)/ws$ {
proxy_pass http://localhost:__PORT__;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
proxy_read_timeout 36000s;
more_set_headers "X-Frame-Options: ALLOWALL";
}
# download, presentation and image upload
location ~ ^/(c|l)ool {
proxy_pass http://localhost:__PORT__;
proxy_set_header Host $host;
more_set_headers "X-Frame-Options: ALLOWALL";
}
# Admin Console websocket
location ^~ /cool/adminws {
proxy_pass http://localhost:__PORT__;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
proxy_read_timeout 36000s;
}
location / {
alias __INSTALL_DIR__/;
index index.html;
}