1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/collabora_ynh.git synced 2024-09-03 18:16:25 +02:00

Fix nginx config

This commit is contained in:
Rafi59 2019-02-27 20:38:20 +01:00
parent e5d66f8ebe
commit 691c4efa7e
2 changed files with 7 additions and 3 deletions

View file

@ -2,18 +2,21 @@
location ^~ /loleaflet {
proxy_pass http://localhost:__PORT__;
proxy_set_header Host $http_host;
more_set_headers "X-Frame-Options: ALLOWALL";
}
# WOPI discovery URL
location ^~ /hosting/discovery {
proxy_pass http://localhost:__PORT__;
proxy_set_header Host $http_host;
more_set_headers "X-Frame-Options: ALLOWALL";
}
# Capabilities
location ^~ /hosting/capabilities {
proxy_pass http://localhost:__PORT__;
proxy_set_header Host $http_host;
more_set_headers "X-Frame-Options: ALLOWALL";
}
# main websocket
@ -23,12 +26,14 @@ location ~ ^/lool/(.*)/ws$ {
proxy_set_header Connection "Upgrade";
proxy_set_header Host $http_host;
proxy_read_timeout 36000s;
more_set_headers "X-Frame-Options: ALLOWALL";
}
# download, presentation and image upload
location ~ ^/lool {
proxy_pass http://localhost:__PORT__;
proxy_set_header Host $http_host;
more_set_headers "X-Frame-Options: ALLOWALL";
}
# Admin Console websocket

View file

@ -37,13 +37,12 @@
{
"name": "password",
"type": "string",
"type": "password",
"ask": {
"en": "Choose a password for Collabora admin",
"fr": "Choisissez un mot de passe pour l'administration de Collabora"
},
"example": "password",
"default": ""
"example": "password"
},
{