nigga3
Some checks failed
Build and Deploy Nuxt / build (push) Failing after 10s

This commit is contained in:
2026-03-17 18:38:42 +01:00
parent 57c1122a1a
commit c538ef631e
3 changed files with 2 additions and 2 deletions

18
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;
}
}
}