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