update repository references and improve script handling
This commit is contained in:
14
proxy/rootfs/etc/nginx/templates/ingress.gtpl
Executable file
14
proxy/rootfs/etc/nginx/templates/ingress.gtpl
Executable file
@@ -0,0 +1,14 @@
|
||||
server {
|
||||
listen 3000 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;
|
||||
}
|
||||
}
|
||||
3
proxy/rootfs/etc/nginx/templates/upstream.gtpl
Executable file
3
proxy/rootfs/etc/nginx/templates/upstream.gtpl
Executable file
@@ -0,0 +1,3 @@
|
||||
upstream backend {
|
||||
server {{ .server }};
|
||||
}
|
||||
Reference in New Issue
Block a user