Fix Authelia config path and stale schedule comments in conf templates
The Authelia config default pointed at /mnt/user/appdata/Authelia, which does not exist — the auth stack lives in the Critical-Data share so it gets synced. Because conf_populate only fills empty fields, that wrong non-empty default blocked auto-detection permanently and left the auth page's rules panel dead. Also corrects three schedule comments that no longer matched varaverk.cron and two references to scripts that have since been renamed or split.
This commit is contained in:
@@ -7,7 +7,7 @@ function vv_auth_conf(): array {
|
||||
$v = vv_conf_vars();
|
||||
$host = strtoupper(vv_detect_host());
|
||||
return [
|
||||
'npm_url' => rtrim($v["{$host}_NPM_URL"] ?? 'http://localhost:81', '/'),
|
||||
'npm_url' => rtrim($v["{$host}_NPM_URL"] ?? 'http://localhost:7818', '/'),
|
||||
'npm_user' => $v["{$host}_NPM_USER"] ?? '',
|
||||
'npm_pass' => $v["{$host}_NPM_PASS"] ?? '',
|
||||
'lldap_url' => rtrim($v["{$host}_LLDAP_URL"] ?? 'http://localhost:17170', '/'),
|
||||
|
||||
Reference in New Issue
Block a user