码迷,mamicode.com
首页 > 其他好文 > 详细

lnmp手动新建虚拟机

时间:2017-06-20 23:25:10      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:日志   服务器   wro   新建   page   htm   html   list   cto   

1.在home/wwwroot/zhongjie   新建zhongjie文件夹

2.在usr/local/nginx/conf/vhost/zhongjie.conf    新建配置文件zhongjie.conf配置文件

代码如下

server
    {
        listen 99;  #1.访问端口
        #listen [::]:80;
        server_name _;
        index index.html index.htm index.php default.html default.htm default.php;
        root  /home/wwwroot/zhongjie;  # 2.指向目录

        include other.conf;
        #error_page   404   /404.html;

        # Deny access to PHP files in specific directory
        #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }

        include enable-php.conf;

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

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

        location ~ /.well-known {
            allow all;
        }

        location ~ /\.
        {
            deny all;
        }

        access_log  /home/wwwlogs/zhongjie.log;  #3.生成日志文件
    }

 

(此代码参考lnmp默认的nginx.conf)

 

然后重启服务器

nginx -s reload  :修改配置后重新加载生效

lnmp手动新建虚拟机

标签:日志   服务器   wro   新建   page   htm   html   list   cto   

原文地址:http://www.cnblogs.com/wesky/p/7056752.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!