v0.1 test

This commit is contained in:
2025-11-14 13:21:18 +01:00
parent 7879445747
commit b7ec4fdc20
24 changed files with 379 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
server {
listen 6052 default_server;
include /etc/nginx/includes/server_params.conf;
location / {
allow 172.30.32.2;
deny all;
proxy_pass {{ .server }};
proxy_set_header X-Ingress-Path {{ .entry }};
{{ if .proxy_pass_host }}
proxy_set_header Host $http_host;
{{ end }}
{{ if .proxy_pass_real_ip }}
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
{{ end }}
include /etc/nginx/includes/proxy_params.conf;
}
}