Initial commit: Robot ökoszisztéma v2.0 - Stabilizált jármű és szerviz robotok

This commit is contained in:
Kincses
2026-03-04 02:03:03 +01:00
commit 250f4f4b8f
7942 changed files with 449625 additions and 0 deletions

29
frontend/nginx.conf Executable file
View File

@@ -0,0 +1,29 @@
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;
}
}
}