From 39085bae960e88a12c02d427c2462cc670597d2b Mon Sep 17 00:00:00 2001 From: cascha42 Date: Mon, 17 Jun 2024 15:45:13 +0200 Subject: [PATCH] Add e-mail configuration tab to frontend --- html/index.html | 4 ++++ nginx_site.cfg | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/html/index.html b/html/index.html index c8d9af7..c0a7703 100644 --- a/html/index.html +++ b/html/index.html @@ -26,6 +26,7 @@ Brandgefahren Telegram METAR + E-MAIL @@ -44,6 +45,8 @@ + + @@ -71,6 +74,7 @@ 'msg-brandgefahren_cfg', 'msg-tg_cfg', 'msg-metar_cfg', + 'msg-email_cfg', ], } }, diff --git a/nginx_site.cfg b/nginx_site.cfg index 368fbb0..db39dd9 100644 --- a/nginx_site.cfg +++ b/nginx_site.cfg @@ -10,5 +10,6 @@ server { 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/; } - + location /msg-email_cfg/ { proxy_pass http://127.0.0.1:3010/; } + }