mirror of
https://github.com/YunoHost-Apps/pydio_ynh.git
synced 2024-09-03 20:16:05 +02:00
14 lines
308 B
Nginx Configuration File
14 lines
308 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";
|
|
}
|