14 lines
No EOL
316 B
Groovy
14 lines
No EOL
316 B
Groovy
server {
|
|
listen 5000 default_server;
|
|
|
|
include /etc/nginx/includes/server_params.conf;
|
|
|
|
location / {
|
|
allow 172.30.32.2;
|
|
deny all;
|
|
|
|
proxy_pass http://backend/;
|
|
#proxy_set_header X-Ingress-Path {{ .entry }};
|
|
include /etc/nginx/includes/proxy_params.conf;
|
|
}
|
|
} |