Files
bigcapital/packages/webapp/nginx/sites/default.conf
2023-10-12 11:07:11 +11:00

12 lines
205 B
Plaintext

server {
listen 80 default_server;
location / {
root /usr/share/nginx/html;
try_files $uri /index.html;
}
location /api {
proxy_pass http://localhost:3000;
}
}