modernize Authelia config to v4.39 format, add watch:true
This commit is contained in:
parent
d82b1a9a6b
commit
b32180c268
3 changed files with 19 additions and 8 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -1,5 +1,15 @@
|
|||
# Changelog
|
||||
|
||||
## 0.1.0.0039 — 2026-07-11
|
||||
|
||||
### Changed
|
||||
- Modernized Authelia config format (fixes all deprecation warnings):
|
||||
- `server.address: tcp://0.0.0.0:9091` (replaces `host` + `port`)
|
||||
- `identity_validation.reset_password.jwt_secret` (replaces `jwt_secret`)
|
||||
- `notifier.smtp.address: submission://...` (replaces `host` + `port`)
|
||||
- `authentication_backend.file.watch: true` (auto-reload on user changes)
|
||||
- `session.remember_me` (replaces `remember_me_duration`)
|
||||
|
||||
## 0.1.0.0038 — 2026-07-11
|
||||
|
||||
### Fixed
|
||||
|
|
|
|||
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
|||
0.1.0.0038
|
||||
0.1.0.0039
|
||||
|
|
|
|||
|
|
@ -1,14 +1,16 @@
|
|||
###############################################################
|
||||
# Authelia configuration #
|
||||
###############################################################
|
||||
host: 0.0.0.0
|
||||
port: 9091
|
||||
server:
|
||||
address: tcp://0.0.0.0:9091
|
||||
|
||||
log:
|
||||
level: info
|
||||
|
||||
theme: dark
|
||||
|
||||
identity_validation:
|
||||
reset_password:
|
||||
jwt_secret: {JWT_SECRET}
|
||||
|
||||
default_redirection_url: https://app.{DOMAIN}/
|
||||
|
|
@ -45,11 +47,11 @@ authentication_backend:
|
|||
session:
|
||||
name: nextworkspace_session
|
||||
secret: {SESSION_SECRET}
|
||||
domain: {DOMAIN}
|
||||
domain: "{DOMAIN}"
|
||||
same_site: lax
|
||||
expiration: 1h
|
||||
inactivity: 5m
|
||||
remember_me_duration: 1M
|
||||
remember_me: 1M
|
||||
|
||||
regulation:
|
||||
max_retries: 5
|
||||
|
|
@ -63,8 +65,7 @@ storage:
|
|||
|
||||
notifier:
|
||||
smtp:
|
||||
host: "{SMTP_HOST}"
|
||||
port: {SMTP_PORT}
|
||||
address: "submission://{SMTP_HOST}:{SMTP_PORT}"
|
||||
username: "{SMTP_USER}"
|
||||
password: "{SMTP_PASS}"
|
||||
sender: "{SMTP_USER}"
|
||||
|
|
|
|||
Loading…
Reference in a new issue