Disable basic auth for /newsletter and /image endpoints

Fixes #2472
This commit is contained in:
JonnyWong16 2025-01-09 09:13:57 -08:00
parent b7c4f2eefe
commit 63fe386057
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -171,6 +171,12 @@ def initialize(options):
'/status': {
'tools.auth_basic.on': False
},
'/newsletter': {
'tools.auth_basic.on': False
},
'/image': {
'tools.auth_basic.on': False
},
'/interfaces': {
'tools.staticdir.on': True,
'tools.staticdir.dir': "interfaces",