FanKingWang

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

server {
listen 9001; 
server_name localhost;

location / {
root hm-mall-admin;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}

server {
listen 9002;
server_name localhost;

location / {
root hm-mall-portal;
index index.html index.htm;
}

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

}

posted on 2022-08-09 17:09  FanKingWang  阅读(21)  评论(0)    收藏  举报