Compare commits

..

No commits in common. "314170d26763d29a6de93360b2a3249f31a49797" and "29f65331a0ec6c0b3a15c35fb1367dfac0224b38" have entirely different histories.

2 changed files with 3 additions and 13 deletions

View file

@ -40,17 +40,12 @@
name = "grafana"; name = "grafana";
ensurePermissions."DATABASE grafana" = "ALL PRIVILEGES"; ensurePermissions."DATABASE grafana" = "ALL PRIVILEGES";
} }
{
name = "authelia";
ensurePermissions."DATABASE authelia" = "ALL PRIVILEGES";
}
]; ];
ensureDatabases = [ ensureDatabases = [
"forgejo" "forgejo"
"hedgedoc" "hedgedoc"
"miniflux" "miniflux"
"grafana" "grafana"
"authelia"
]; ];
}; };
} }

View file

@ -14,7 +14,7 @@
default_2fa_method = "totp"; default_2fa_method = "totp";
default_redirection_url = "https://passport.notohh.dev/"; default_redirection_url = "https://passport.notohh.dev/";
authentication_backend = { authentication_backend = {
file.path = "/var/lib/authelia-default/user.yml"; file.path = "/etc/authelia/user.yml";
}; };
session = { session = {
domain = "notohh.dev"; domain = "notohh.dev";
@ -51,13 +51,8 @@
notifier.filesystem = { notifier.filesystem = {
filename = "/var/lib/authelia-default/notif.txt"; filename = "/var/lib/authelia-default/notif.txt";
}; };
storage.postgres = { storage.local = {
host = "192.168.1.211"; path = "/var/lib/authelia-default/db.sqlite3";
port = 5432;
database = "authelia";
schema = "public";
username = "authelia";
password = "authelia";
}; };
}; };
}; };