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

nginx 多个虚拟主机

时间:2017-02-14 20:19:59      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:pre   include   code   gif   ati   erro   deny   wro   blog   

1在/usr/local/nginx/conf/vhost放入一下文件

server
    {
        listen 80;
        #listen [::]:80;
        server_name chaoshi.org www.chaoshi.org;
        index index.html index.htm index.php default.html default.htm default.php;
        root  /home/wwwroot/www.chaoshi.org/video/frontend/web;

        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 ~ /\.
        {
            deny all;
        }

        access_log  /home/wwwlogs/www.chaoshi.org.log;
    }

 

nginx 多个虚拟主机

标签:pre   include   code   gif   ati   erro   deny   wro   blog   

原文地址:http://www.cnblogs.com/liadmin/p/6399012.html

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