From bef9a5b8fde94911fc4ec798dc52108b3b1d8c4f Mon Sep 17 00:00:00 2001 From: myvesta Date: Sun, 14 Jul 2019 02:00:41 +0200 Subject: [PATCH] proxy-ip.tpl --- install/debian/10/templates/web/nginx/proxy_ip.tpl | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 install/debian/10/templates/web/nginx/proxy_ip.tpl diff --git a/install/debian/10/templates/web/nginx/proxy_ip.tpl b/install/debian/10/templates/web/nginx/proxy_ip.tpl new file mode 100755 index 00000000..ae195617 --- /dev/null +++ b/install/debian/10/templates/web/nginx/proxy_ip.tpl @@ -0,0 +1,9 @@ +server { + listen %ip%:%proxy_port% default; + server_name _; + #access_log /var/log/nginx/%ip%.log main; + location / { + proxy_pass http://%ip%:%web_port%; + } +} +