testupload / nginx /nginx.conf
Twan07's picture
Create nginx/nginx.conf
ea05553 verified
raw
history blame
184 Bytes
events {}
http {
server {
listen 7860;
location /api/ {
proxy_pass http://127.0.0.1:3000;
}
location / {
proxy_pass http://127.0.0.1:5173;
}
}
}