linux apache服务器配置虚拟主机

楼主用的是阿里云


配置虚拟主机需要在 /alidata/vhosts/default.conf文件中加以下内容

1
2
3
4
5
6
7
8
9
10
11
12
13
<VirtualHost *:80>
    DocumentRoot /alidata/www/default/baby
    ServerName www.nixiaofeng.xyz
    ServerAlias www.nixiaofeng.xyz
    <Directory "/alidata/www/default/baby">
        Options Indexes FollowSymLinks
        AllowOverride all
        Order allow,deny
        Allow from all
    </Directory>
    ErrorLog "/alidata/log/httpd/phpwind-error.log"
    CustomLog "/alidata/log/httpd/phpwind.log" common
</VirtualHost>
本文转自  陈小龙哈   51CTO博客,原文链接:http://blog.51cto.com/chenxiaolong/1710419

上一篇:使用UILabel实现滚动字幕移动效果


下一篇:rabbitmqctl 命令行管理工具