Files
nginx-analize/results/mock/backend.conf
Redsandyg fcc9139361 init
2026-06-15 06:31:35 +03:00

15 lines
246 B
Plaintext

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";
}
}