default.conf 250 B

123456789101112131415
  1. server {
  2. #blue
  3. listen 8682;
  4. server_name localhost;
  5. location / {
  6. root html;
  7. index index.html index.htm;
  8. }
  9. location ~ /prod-api/ {
  10. proxy_pass http://localhost:8181;
  11. }
  12. }