Files
service-finder/frontend/nginx.conf

29 lines
730 B
Nginx Configuration File
Executable File

worker_processes 4; # Itt korlátozzuk a 108 helyett!
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html; # Itt keresi a fájlokat
index index.html;
location / {
try_files $uri $uri/ /index.html; # SPA (Vue/React) támogatás
}
# API kérések továbbküldése a backendnek (opcionális, ha a frontend kéri)
location /api/ {
proxy_pass http://service_finder_api:8000/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}
}