write-ups-challenges-2024-2025/traffic-jam/conf/nginx.conf
2024-11-25 22:33:53 +01:00

11 lines
166 B
Nginx Configuration File

server {
listen 8080 default_server;
server_name _;
location /${FLAG_RANDOMIZATION} {
return 200 "${FLAG}";
add_header Content-Type text/plain;
}
}