First official commit

This commit is contained in:
2026-07-13 17:08:55 +02:00
parent 6d7fae0159
commit 7862457be7
7 changed files with 147 additions and 21 deletions

24
nginx.conf Normal file
View File

@@ -0,0 +1,24 @@
events {}
http {
server {
listen 80;
server_name _;
# Can we add small backend in the future?
# Normal requests
location / {
proxy_pass http://frontend:3000;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
}