Files
ctf/2026/kalmar/web/handout/nginx/nginx.conf
2026-04-15 01:05:54 +02:00

17 lines
237 B
Nginx Configuration File

events {
worker_connections 1024;
}
http {
server {
listen 80;
location /report {
proxy_pass http://bot:3123;
}
location / {
proxy_pass http://web:5000;
}
}
}