diff --git a/html/index.html b/html/index.html
index 408e1e3..c8d9af7 100644
--- a/html/index.html
+++ b/html/index.html
@@ -25,6 +25,7 @@
Testalarm
Brandgefahren
Telegram
+ METAR
@@ -41,6 +42,8 @@
+
+
@@ -67,6 +70,7 @@
'msg-testalarm_cfg',
'msg-brandgefahren_cfg',
'msg-tg_cfg',
+ 'msg-metar_cfg',
],
}
},
diff --git a/nginx_site.cfg b/nginx_site.cfg
index 959ba94..368fbb0 100644
--- a/nginx_site.cfg
+++ b/nginx_site.cfg
@@ -1,6 +1,6 @@
server {
listen 80;
- server_name smartpager.network;
+ server_name _;
location / { proxy_pass http://127.0.0.1:3250; }
location /disp_main/ { proxy_pass http://127.0.0.1:3000/; }
location /disp_cfg/ { proxy_pass http://127.0.0.1:3001/; }
@@ -9,5 +9,6 @@ server {
location /msg-testalarm_cfg/ { proxy_pass http://127.0.0.1:3070/; }
location /msg-mowas_cfg/ { proxy_pass http://127.0.0.1:3090/; }
location /msg-brandgefahren_cfg/ { proxy_pass http://127.0.0.1:3100/; }
+ location /msg-metar_cfg/ { proxy_pass http://127.0.0.1:3110/; }
}