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