pydio_ynh/conf/nginx.conf
2022-02-26 00:20:23 +01:00

15 lines
309 B
Nginx Configuration File

location / {
proxy_pass https://localhost:__PORT__;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}
location /ws/ {
proxy_pass https://localhost:__PORT__;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}