Initial commit: Robot ökoszisztéma v2.0 - Stabilizált jármű és szerviz robotok
This commit is contained in:
29
frontend/nginx.conf
Executable file
29
frontend/nginx.conf
Executable 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user