mirror of
https://github.com/YunoHost-Apps/reverseproxy_ynh.git
synced 2024-09-03 20:16:23 +02:00
27 lines
729 B
Nginx Configuration File
27 lines
729 B
Nginx Configuration File
location @__NAME__--proxy {
|
|
proxy_pass __PROXY_PATH__;
|
|
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";
|
|
|
|
more_clear_input_headers 'Accept-Encoding';
|
|
}
|
|
|
|
# Support relative URLs
|
|
__REDIRECT_BLOCK__
|
|
|
|
location __PATH_SLASH__ {
|
|
# Include SSOWAT user panel.
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
|
|
__ASSETS_ALIAS__
|
|
__TRY_FILES__
|
|
}
|