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

14
results/mock/backend.conf Normal file
View File

@@ -0,0 +1,14 @@
server {
listen 80;
server_name backend;
location /status {
default_type text/plain;
return 200 "backend-ok\n";
}
location / {
default_type text/plain;
return 200 "backend-default\n";
}
}