default.conf 268 B

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