一、切换到nginx的配置文件路径下:cd /usr/local/nginx/conf
二、编辑nginx的配置文件:vim nginx.conf
三、修改或添加location代码块,如下
location /project1{
alias /usr/local/nginx/dist#静态资源路径
index index.html index.htm;
}
location /project2{
alias /usr/local/nginx/dist#静态资源路径
index index.html index.htm;
}
四、浏览器访问方式:ip+端口+/project1或2
当浏览器发起请求访问location后的路径时,nginx将请求转发到location代码块内静态资源路径发起真实的访问。文章来源:https://www.toymoban.com/news/detail-449268.html
文章来源地址https://www.toymoban.com/news/detail-449268.html
到了这里,关于linux中如何使用nginx部署多个静态资源文件?的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!