From 33c7871dbe86a07405e5186515adaea412498f24 Mon Sep 17 00:00:00 2001 From: Hemna Date: Tue, 15 Aug 2023 17:42:56 -0400 Subject: [PATCH] Forcefully allow development webchat flask This patch adds the force werkzeug to allow development environment to allow aprsd webchat to work from inside of systemd --- aprsd/cmds/webchat.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aprsd/cmds/webchat.py b/aprsd/cmds/webchat.py index 0d2e58b..c5a2929 100644 --- a/aprsd/cmds/webchat.py +++ b/aprsd/cmds/webchat.py @@ -490,6 +490,7 @@ def webchat(ctx, flush, port): # ssl_context="adhoc", host=CONF.admin.web_ip, port=port, + allow_unsafe_werkzeug=True, ) LOG.info("WebChat exiting!!!! Bye.")