This commit is contained in:
Redsandyg
2026-06-15 06:31:35 +03:00
commit fcc9139361
50 changed files with 5400 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
server {
listen 9999;
server_name auth-mock;
location /validate {
default_type text/plain;
return 200 "auth-ok\n";
}
}