Apache 虚拟主机配置

作者:Shine 发布于:2016-08-23 23:24:04 浏览:686次 分类:PHP

Apache 虚拟主机配置

blob.png

代码如下:

<VirtualHost *:80>
    ServerAdmin muyu.jumoshen.cn
    DocumentRoot "/home/testCode/"
    ServerName muyu.jumoshen.cn
    ErrorLog "/data/wwwlogs/error_apache.log"
    CustomLog "/data/wwwlogs/access_apache.log" common
<Directory "/home/testCode/">
    SetOutputFilter DEFLATE
    Options FollowSymLinks ExecCGI
    Require all granted
    AllowOverride All
    Order allow,deny
    Allow from all
    DirectoryIndex index.html index.php
</Directory>
<Location /server-status>
    SetHandler server-status
    Order Deny,Allow
    Deny from all
    Allow from all
</Location>
</VirtualHost>


标签: linux apache
声明:文章内容由作者原创或整理,转载请标明出处!
暂留位置!--请勿随意修改