快速业务通道

Linux下批量建虚拟主机脚本

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-04-07

下面是我在工作中经常建站所用到的脚本,把需要建的虚拟主机域名写到test.txt中然后在开始写下面的脚本,此脚本是在nginx环境下用的

#!/bin/bash
for domain in `cat test.txt`
do
cat >> /usr/local/nginx/conf/vhost/host.conf << EOF或者用下句二者择其一

cat > /usr/local/nginx/conf/vhost/$domain.conf << EOF
server
{
listen 80;
server_name www.$domain $domain;
index index.php index.html index.htm;
root /data0/web/$domain;
error_page 404 = http://www.$domain;

if (!-f $request_filename){
set $rule_0 1$rule_0;
}
if (!-d $request_filename){
set $rule_0 2$rule_0;
}
if ($rule_0 = "21"){
rewrite ^/(.*)?*$ /index.php?_route_=$1 last;
}
if ($host != ''www.$domain'' ) {
rewrite ^/(.*)$ http://www.$domain/$1 permanent;
}
location ~ .*.(php|php5)?$
{
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}

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


}
EOF
done

本文出自 “Linux生涯” 博客,谢绝转载!

拥有帝国一切,皆有可能。欢迎访问phome.net

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号