Tweaked PR to include the latest asset build changes for CSS minimizer. Also updated the default session storage to use SQLAlchemy instead of the file system.

This commit is contained in:
Matt Scott
2023-03-10 16:34:55 -05:00
parent 1d6fdb1c23
commit 356667f989
4 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ PORT = 80
SQLALCHEMY_DATABASE_URI = 'sqlite:////data/powerdns-admin.db'
SESSION_COOKIE_SAMESITE = 'Lax'
CSRF_COOKIE_HTTPONLY = True
SESSION_TYPE = 'filesystem'
SESSION_TYPE = 'sqlalchemy'
legal_envvars = (
'SECRET_KEY',