reverseproxy_ynh/conf/nginx.conf

28 lines
729 B
Nginx Configuration File
Raw Normal View History

location @__NAME__--proxy {
proxy_pass __PROXY_PATH__;
2016-06-20 23:43:51 +02:00
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
proxy_set_header X-Forwarded-Port $server_port;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
2016-06-20 23:43:51 +02:00
more_clear_input_headers 'Accept-Encoding';
}
2023-01-08 14:33:31 +01:00
# Support relative URLs
__REDIRECT_BLOCK__
2023-01-08 14:33:31 +01:00
2023-11-25 19:16:11 +01:00
location __PATH_SLASH__ {
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
__ASSETS_ALIAS__
__TRY_FILES__
2023-01-08 14:33:31 +01:00
}