feat: add nginx.conf for frontend proxy to API

This commit is contained in:
Tatiana Villa Ema 2026-04-27 02:09:57 +02:00
parent 7b4c94c2c7
commit 8781d22acf
1 changed files with 21 additions and 0 deletions

21
frontend/nginx.conf Normal file
View File

@ -0,0 +1,21 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
# Proxy API calls to the Spring Boot backend
location /f1/ {
proxy_pass http://formula1-api:8080/f1/;
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;
}
# Serve static files
location / {
try_files $uri $uri/ /index.html;
}
}