write-ups-challenges-2024-2025/traffic-jam/conf/nginx.conf

11 lines
166 B
Nginx Configuration File
Raw Normal View History

2024-11-25 21:33:53 +00:00
server {
listen 8080 default_server;
server_name _;
location /${FLAG_RANDOMIZATION} {
return 200 "${FLAG}";
add_header Content-Type text/plain;
}
}