- 将项目拉倒
nginx/html
文件夹下 - 复制
nginx/conf/nginx.conf
在同级目录,我的取名为nginx/conf/custom.conf
- 修改custom.conf配置文件
server
{
#监听端口
listen 9999;
server_name XXX;
index index.html index.htm index.php;
# root /www/server/phpmyadmin;
location /{
# objName项目文件夹的路径
root html/objName;
# html文件名
index index.html;
autoindex on;
try_files $uri $uri/ /index.html;
}
#配置这个静态资源访问路径,否则静态资源会找不到
location ~.*\.(gif|jpg|css|js|mp3|png){
root html/birthday;
expires 3000d;
}
…… 中间省略
access_log /www/wwwlogs/access.log;
}