This commit resolves #98 so custom location can forward to custom path. (#99)

Awesome work!
This commit is contained in:
kolbii
2019-03-11 04:52:09 +01:00
committed by jc21
parent 631d9ae4eb
commit d79fcbf447
5 changed files with 17 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
proxy_set_header X-Forwarded-Scheme $scheme;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_pass {{ forward_scheme }}://{{ forward_host }}:{{ forward_port }};
proxy_pass {{ forward_scheme }}://{{ forward_host }}:{{ forward_port }}{{ forward_path }};
{{ advanced_config }}
}