Skip to content

Commit bbde7a1

Browse files
committed
Use variable with full uri in proxy pass
1 parent 87731a8 commit bbde7a1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

backend/templates/_location.conf

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
location {{ path }} {
2+
set $upstream {{ forward_scheme }}://{{ forward_host }}:{{ forward_port }}{{ forward_path }}$request_uri;
23
proxy_set_header Host $host;
34
proxy_set_header X-Forwarded-Scheme $scheme;
45
proxy_set_header X-Forwarded-Proto $scheme;
56
proxy_set_header X-Forwarded-For $remote_addr;
67
proxy_set_header X-Real-IP $remote_addr;
7-
proxy_pass {{ forward_scheme }}://{{ forward_host }}:{{ forward_port }}{{ forward_path }};
8+
proxy_pass $upstream;
89

910
{% if access_list_id > 0 %}
1011
{% if access_list.items.length > 0 %}

0 commit comments

Comments
 (0)