plane/nginx/nginx.conf
sriram veeraghanta 621fcfc041 removing trubo
2023-04-21 19:37:13 -04:00

21 lines
314 B
Nginx Configuration File

events {
}
http {
sendfile on;
server {
listen 80;
root /www/data/;
access_log /var/log/nginx/access.log;
location / {
proxy_pass http://plane_app:3000/;
}
location /api/ {
proxy_pass http://plane_api:8000/api/;
}
}
}