Skip to content

Commit 66f86cf

Browse files
authored
Merge pull request #1258 from nightah/fix-location-proxy_pass
Utilise variable for custom locations proxy_pass
2 parents 6b59f36 + 6c1ae77 commit 66f86cf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

backend/templates/_location.conf

Lines changed: 2 additions & 1 deletion
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 }};
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)