You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.1 KiB
SYSTEMD
55 lines
1.1 KiB
SYSTEMD
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; }
|
|
}
|