added nginx conf

This commit is contained in:
cheetah 2022-12-12 23:34:50 +01:00
parent f9c69d948b
commit 8efc48e33c

11
nginx_site.cfg Normal file
View file

@ -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/; }
}