From 8efc48e33c6459bd5ef65420cb6164fc2c66e0a2 Mon Sep 17 00:00:00 2001 From: cheetah Date: Mon, 12 Dec 2022 23:34:50 +0100 Subject: [PATCH] added nginx conf --- nginx_site.cfg | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 nginx_site.cfg diff --git a/nginx_site.cfg b/nginx_site.cfg new file mode 100644 index 0000000..1b61895 --- /dev/null +++ b/nginx_site.cfg @@ -0,0 +1,11 @@ +server { + listen 80; + server_name smartpager.network; + location / { proxy_pass http://127.0.0.1:3080; } + location /disp_main/ { proxy_pass http://127.0.0.1:3000/; } + location /disp_cfg/ { proxy_pass http://127.0.0.1:3001/; } + location /msg-dwd_cfg/ { proxy_pass http://127.0.0.1:3050/; } + location /msg-tg_cfg/ { proxy_pass http://127.0.0.1:3060/; } + location /msg-testalarm_cfg/ { proxy_pass http://127.0.0.1:3070/; } + location /msg-mowas_cfg/ { proxy_pass http://127.0.0.1:3090/; } +}