This commit is contained in:
2026-01-19 05:35:37 +03:00
commit cbbc605336
20 changed files with 841 additions and 0 deletions

19
auth/config.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
return [
"db" => [
"host" => "db",
"port" => 3306,
"user" => "root",
"password" => "rootpass",
"name" => "auth_db",
],
"rate_limit" => [
"window_seconds" => 300,
"max_attempts" => 10,
],
"logging" => [
"dir" => __DIR__ . "/logs",
"file" => __DIR__ . "/logs/auth.log",
],
];