added nginx conf
parent
8efc48e33c
commit
1a082952bb
@ -0,0 +1,54 @@
|
||||
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/; }
|
||||
}
|
||||
|
||||
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name disp.smartpager.network;
|
||||
location / { proxy_pass http://127.0.0.1:3000; }
|
||||
}
|
||||
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name disp_cfg.smartpager.network;
|
||||
location / { proxy_pass http://127.0.0.1:3001; }
|
||||
}
|
||||
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name dwd.smartpager.network;
|
||||
location / { proxy_pass http://127.0.0.1:3050; }
|
||||
}
|
||||
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name tg.smartpager.network;
|
||||
location / { proxy_pass http://127.0.0.1:3060; }
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name testalarm.smartpager.network;
|
||||
location / { proxy_pass http://127.0.0.1:3070; }
|
||||
}
|
||||
|
||||
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name nina.smartpager.network;
|
||||
location / { proxy_pass http://127.0.0.1:3090; }
|
||||
}
|
Loading…
Reference in New Issue