This commit is contained in:
2026-03-17 18:16:06 +01:00
parent bbd930d487
commit 38d85342f7
6 changed files with 114 additions and 72 deletions

18
nginx/nginx.conf Normal file
View File

@@ -0,0 +1,18 @@
events {}
http {
server {
listen 80;
server_name _;
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;
}
}
}