server {
listen 6080;
server_name local.boheadmin;

location / {
proxy_pass http://127.0.0.1:8087;
}

location /admin {
proxy_pass http://127.0.0.1:8103/admin;
}

location /upload {
alias C:/workspace/upload/;
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}


}

 

相关文章:

  • 2021-08-13
  • 2022-03-04
  • 2022-12-23
  • 2022-12-23
  • 2021-11-28
  • 2021-08-29
猜你喜欢
  • 2022-12-23
  • 2021-07-22
  • 2022-12-23
  • 2022-01-08
  • 2021-08-11
  • 2021-12-09
  • 2022-02-26
相关资源
相似解决方案