default.conf 248 B

123456789101112131415
  1. server {
  2. #yellow
  3. listen 8681;
  4. server_name localhost;
  5. location / {
  6. root html;
  7. index index.html index.htm;
  8. }
  9. location ~ /hosp/ {
  10. proxy_pass http://localhost:8183;
  11. }
  12. }