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;
}
}
浙公网安备 33010602011771号