1 2 3 4 5 6 7 8 9 10 11 12
server { listen 80; location / { root /app; try_files $uri /index.html; } location /api { rewrite /api(.*) $1 break; proxy_pass http://backend; } }