zoukankan      html  css  js  c++  java
  • apache配置多域名多站点记录

    <VirtualHost *:80>
      DocumentRoot "/mnt/web/www.*.cn"
      ServerName www.*.cn
      ErrorLog "logs/www-error.log"
      CustomLog "logs/www-access.log" common
      <Directory "/">
        Options Indexes FollowSymLinks Includes ExecCGI
        AllowOverride All
        Require all granted
      </Directory>
    </VirtualHost>

    <VirtualHost *:80>
      DocumentRoot "/mnt/web/m.*.cn"
      ServerName m.*.cn
      ErrorLog "logs/www-error.log"
      CustomLog "logs/www-access.log" common
      <Directory "/">
        Options Indexes FollowSymLinks Includes ExecCGI
        AllowOverride All
        Require all granted
      </Directory>
    </VirtualHost>

    <VirtualHost *:80>
      DocumentRoot "/mnt/web/cb.*.cn"
      ServerName cb.*.cn
      ServerAlias  cb.*.cn cookbook.*.cn
      ErrorLog "logs/www-error.log"
      CustomLog "logs/www-access.log" common
      <Directory "/">
        Options Indexes FollowSymLinks Includes ExecCGI
        AllowOverride All
        Require all granted
      </Directory>
    </VirtualHost>

    <VirtualHost *:80>
      DocumentRoot "/mnt/web/www.*.com.cn"
      ServerName www.*.com.cn
      ErrorLog "logs/www-error.log"
      CustomLog "logs/www-access.log" common
      <Directory "/">
        Options Indexes FollowSymLinks Includes ExecCGI
        AllowOverride All
        Require all granted
      </Directory>
    </VirtualHost>

  • 相关阅读:
    HDU_3127 WHUgirls(DP)
    ibatits
    jqGrid怎么设定水平滚动条
    poi导出EXcel
    jqGrid资料总结
    jqgrid横向滚动条
    开源网http://www.openopen.com/ajax/2_Charts.htm
    struts2国际化
    struts2结合poi导出excel
    Struts2 Action读取资源文件
  • 原文地址:https://www.cnblogs.com/shher/p/4884368.html
Copyright © 2011-2022 走看看