25 lines
482 B
Nginx Configuration File
25 lines
482 B
Nginx Configuration File
events {}
|
|
|
|
http {
|
|
|
|
upstream backend {
|
|
least_conn;
|
|
server localhost:5173;
|
|
server localhost:5173;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
proxy_pass http://backend;
|
|
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;
|
|
|
|
|
|
}
|
|
|
|
}
|
|
} |