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

nginx 多域名绑定

时间:2015-08-04 16:02:24      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:include   server   listen   


server {
        listen       80;
        server_name  ~^(?<subdomain>.+)\.youwebname\.com$;
        index index.html index.htm index.php;
        root  /wwwroot/$subdomain;
        error_page 404 = /404.html;
        location ~ .*\.(php|php5)?$
        {
                #fastcgi_pass  unix:/tmp/php-cgi.sock;
                fastcgi_pass  127.0.0.1:9000;
                fastcgi_index index.php;
                include fastcgi.conf;
        }
        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
                expires 30d;
        }
        location ~ .*\.(js|css)?$
        {
                expires 1h;
        }
        access_log  /alidata/log/nginx/access/hn.log;
}

nginx 多域名绑定

标签:include   server   listen   

原文地址:http://wangxiaoyong.blog.51cto.com/2289427/1681468

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