authelia: extend session inactivity timeout to 2h

Inactivity was 5m which caused logouts while working in VS Code
(no new page loads). Bumped inactivity to 2h, expiration to 12h.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
rope 2026-05-16 12:42:17 +01:00
parent 5eeab405c0
commit 81b5fc84d1

View file

@ -90,8 +90,8 @@ in
domain = "nordhammer.it"; domain = "nordhammer.it";
authelia_url = "https://auth.nordhammer.it"; authelia_url = "https://auth.nordhammer.it";
}]; }];
expiration = "1h"; expiration = "12h";
inactivity = "5m"; inactivity = "2h";
}; };
storage.local.path = "/var/lib/authelia-main/db.sqlite3"; storage.local.path = "/var/lib/authelia-main/db.sqlite3";