Allow werkzeug for admin interface.

This patch enables werkzeug for socketio for the admin interface
This commit is contained in:
Hemna 2022-11-30 14:28:31 -05:00
parent f9e7195e25
commit 5067f745ca
1 changed files with 1 additions and 0 deletions

View File

@ -114,6 +114,7 @@ def server(ctx, flush):
(socketio, app) = flask.init_flask(config, loglevel, quiet)
socketio.run(
app,
allow_unsafe_werkzeug=True,
host=config["aprsd"]["web"]["host"],
port=config["aprsd"]["web"]["port"],
)