default.conf 249 B

123456789101112131415
  1. server {
  2. #red
  3. listen 8680;
  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:8182;
  11. }
  12. }