This commit is contained in:
2026-04-15 01:05:54 +02:00
parent db0324c43d
commit bc0c08342d
84 changed files with 28780 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
FROM nginx:alpine
# Just adding nginx so we can expose everything over one port. It's not part of the challenge
COPY nginx.conf /etc/nginx/nginx.conf

View File

@@ -0,0 +1,17 @@
events {
worker_connections 1024;
}
http {
server {
listen 80;
location /report {
proxy_pass http://bot:3123;
}
location / {
proxy_pass http://web:5000;
}
}
}