Missing semicolon, fix postgres user

This commit is contained in:
niten 2023-09-02 12:47:53 -07:00
parent 4476eb759b
commit 4fc212faa7
1 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ in {
volumes =
[ "${cfg.state-directory}/postgres:/var/lib/postgresql/data" ];
healthcheck = {
test = [ "CMD" "pg_isready" "-U" "authentik" "-d" "authentik" ];
test = [ "CMD" "pg_isready" "-U" "nextcloud" "-d" "nextcloud" ];
start_period = "20s";
interval = "30s";
timeout = "3s";
@ -179,7 +179,7 @@ in {
return =
"301 $scheme://$host:$server_port/remote.hph/dav";
};
"/" = { extraConfig = "rewrite ^ /index.php"; };
"/" = { extraConfig = "rewrite ^ /index.php;"; };
"~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/".extraConfig =
"deny all;";
"~ ^/(?:.|autotest|occ|issue|indie|db_|console)".extraConfig =