文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>添加apache虚拟主机脚本

添加apache虚拟主机脚本

时间:2009-04-29  来源:forward51

#!/bin/bash
#Add a vhost
#vhost configfile is vhost.conf
  echo ""
echo "<Directory \"Directorypwd\">"      >> ./vhost.temp
echo "Options FollowSymLinks"   >> ./vhost.temp
echo "AllowOverride All"        >> ./vhost.temp
echo "Order allow,deny"         >> ./vhost.temp
echo "Allow from all"           >> ./vhost.temp
echo "AddDefaultCharset GBK"    >> ./vhost.temp
echo "Options +Includes"        >> ./vhost.temp
echo "</Directory>"             >> ./vhost.temp
echo ""                         >> ./vhost.temp
echo ""                         >> ./vhost.temp
echo "<VirtualHost *:80>"       >> ./vhost.temp
echo "ServerName   "            >> ./vhost.temp
echo "DocumentRoot  "           >> ./vhost.temp
echo "DirectoryIndx index.shtml index.html index.php"   >> ./vhost.temp
echo "</VirtualHost>"           >> ./vhost.temp
echo ""

echo "Please input Directory ( example \"/var/www/html/\" ):"
read Directory
echo ""
echo "Please input ServerName ( example "www.example.com" ) :"
read ServerName
  sed -e /Directory/{s:Directorypwd:${Directory}:} -e /ServerName/{s/$/$ServerName/} -e /DocumentRoot/{s:$:${Directory}:} vhost.temp >> vhost.conf   rm -f ./vhost.temp   echo ""
echo '###################'
echo '#                 #'
echo '# "Add vhost OK!" #'
echo '#                 #'
echo '###################'
echo ""
tail -n 16 vhost.conf
相关阅读 更多 +
排行榜 更多 +
摧毁大厦游戏

摧毁大厦游戏

飞行射击 下载
合并动物城手游版

合并动物城手游版

休闲益智 下载
哈士奇大冒险

哈士奇大冒险

休闲益智 下载