diff --git a/conf/nginx.conf b/conf/nginx.conf index c289b91..e13a7fa 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -3,19 +3,19 @@ location / { rewrite ^/$ https://__DOMAIN__/loleaflet/dist/admin/admin.html permanent; # static files location ^~ /loleaflet { - proxy_pass https://localhost:9980; + proxy_pass http://localhost:9980; proxy_set_header Host $http_host; } # WOPI discovery URL location ^~ /hosting/discovery { - proxy_pass https://localhost:9980; + proxy_pass http://localhost:9980; proxy_set_header Host $http_host; } # Main websocket location ~ /lool/(.*)/ws$ { - proxy_pass https://localhost:9980; + proxy_pass http://localhost:9980; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header Host $http_host; @@ -24,7 +24,7 @@ rewrite ^/$ https://__DOMAIN__/loleaflet/dist/admin/admin.html permanent; # Admin Console websocket location ^~ /lool/adminws { - proxy_pass https://localhost:9980; + proxy_pass http://localhost:9980; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header Host $http_host; @@ -33,9 +33,6 @@ rewrite ^/$ https://__DOMAIN__/loleaflet/dist/admin/admin.html permanent; # download, presentation and image upload location ^~ /lool { - proxy_pass https://localhost:9980; + proxy_pass http://localhost:9980; proxy_set_header Host $http_host; } - # Include SSOWAT user panel. - include conf.d/yunohost_panel.conf.inc; -}