您的位置:首页 > 运维架构 > Nginx

【Thinkphp5 】部署nginx时nginx.conf配置文件修改

2017-03-07 13:52 615 查看
背景:thinkphp5项目

服务器环境: lnmp

1 打开路径 /usr/local/nginx/conf/vhost/

此路径下会有你添加的域名文件夹。。找到对应的域名打开。

2 代码如下,背景色部分是我新加的

server
{
listen 80;
#listen [::]:80;
server_name www.xxx.cn xxx.cn;
index index.html index.htm index.php default.html default.htm default.php;
root  /home/wwwroot/www.xxx.cn/public;

include other.conf;
#error_page   404   /404.html;
include enable-php.conf;

location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires      30d;
}

location ~ .*\.(js|css)?$
{
expires      12h;
}

location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}

location ~ /\.
{
deny all;
}

access_log  /home/wwwlogs/www.xxx.cn.log;
}


3 重启nginx

#nginx命令

start:
/usr/local/nginx/sbin/nginx

stop:
/usr/local/nginx/sbin/nginx -s stop

reload:
/usr/local/nginx/sbin/nginx -s reload
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: