1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/lingva_ynh.git synced 2024-09-03 19:36:20 +02:00
lingva_ynh/conf/nginx.conf

15 lines
425 B
Nginx Configuration File
Raw Normal View History

2023-05-30 11:14:12 +02:00
#root_path_only location / {
#sub_path_only location __PATH__ {
2023-05-29 11:46:05 +02:00
# Standard nginx configuration
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
2023-05-29 11:46:05 +02:00
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
2023-05-29 16:57:57 +02:00
proxy_pass http://localhost:__PORT____PATH__;
2023-05-29 11:46:05 +02:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}