- 配置多个站点,配置多个location
server {
listen 80;
location /spring {
root /data_prod/webapp/spring;
index index.html;
}
location / {
root /data_prod/webapp/lamp-web-pro-datasource/dist;
index index.html;
}
}
配置完以后访问。http://xxxx/spring提示404
- 将具有具体路径的站点,将root修改为使用alias配置
server {
listen 80;
location /spring {
alias /data_prod/webapp/spring;
index index.html;
}
location / {
root /data_prod/webapp/lamp-web-pro-datasource/dist;
index index.html;
}
}
改动后即可以使用了;
- 具体root 和 alias 的区别:Nginx配置中:root和alias区别 - 简书 (jianshu.com)