当前位置:七道奇文章资讯系统安全Linux安全
日期:2012-05-05 23:00:00  来源:本站整理

Ubuntu下Apache基于域名的虚拟主机配置[Linux安全]

赞助商链接



  本文“Ubuntu下Apache基于域名的虚拟主机配置[Linux安全]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

  比方有两个域名www.linuxidc 和www.linuxidc.net两个域名要做解析

  在/etc/apache2/sites-available 目录下成立a和b两个文件,这里只是为了利用的便利,你细心察看可以看出在sites-enabled文件下也会有相关的文件衔接(只是一个软衔接)到sites-available 文件下呼应的文件上

  为了便利管理,这里做的都利用一个名称也简单记忆.

  编辑呼应文件内容以下

NameVirtualHost www.linuxidc  
<VirtualHost www.linuxidc>  
    ServerName www.linuxidc  
    ServerAlias linuxidc *.linuxidc  
    ServerAdmin webmaster@linuxidc  
  
    DocumentRoot /var/www/a/  
    <Directory />  
        Options FollowSymLinks  
        AllowOverride None  
    </Directory>  
    <Directory /var/www/a/>  
        Options Indexes FollowSymLinks MultiViews  
        AllowOverride None  
        Order allow,deny  
        allow from all  
        # This directive allows us to have apache2's default start page  
        # in /apache2-default/, but still have / go to the right place  
        # Commented out for Ubuntu  
        #RedirectMatch ^/$ /apache2-default/  
    </Directory>  
  
    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/  
    <Directory "/usr/lib/cgi-bin">  
        AllowOverride None  
        Options ExecCGI -MultiViews +SymLinksIfOwnerMatch  
        Order allow,deny  
        Allow from all  
    </Directory>  
  
    ErrorLog /var/log/apache2/a.log  
  
    # Possible values include: debug, info, notice, warn, error, crit,  
    # alert, emerg.  
    LogLevel warn  
  
    CustomLog /var/log/apache2/access.log combined  
    ServerSignature On  
  
    Alias /doc/ "/usr/share/doc/"  
    <Directory "/usr/share/doc/">  
        Options Indexes MultiViews FollowSymLinks  
        AllowOverride None  
        Order deny,allow  
        Deny from all  
        Allow from 127.0.0.0/255.0.0.0 ::1/128  
    </Directory>  
</VirtualHost>     

  

  文件b里的内容基本和a是一样的,只需求所少数几处改一下

  履行a2ensite a a2ensite b 号令使虚拟主机见效

  重启apache

  Java代码

  /etc/init.d/apache2 restart

  大概重新加载apache2

  Java代码

  /etc/init.d/apache2 reload

  改正hosts文件

  Java代码

  vi /etc/hosts

  插入下面两行

  127.0.0.1 www.linuxidc

  127.0.0.1 www.linuxidc.net

  目前拜候两个域名,会发现解析到了差别的目录

  假如哪个虚拟主机不想利用只需求履行号令

  Java代码

  a2dissite b

  这样再拜候www.linuxidc.net就不能精确解析

  以上是“Ubuntu下Apache基于域名的虚拟主机配置[Linux安全]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • ubuntu下无法利用无线网络的办理办法
  • 三步搞定windows与ubuntu之间文件同享
  • Ubuntu和windows文件同享问题详解
  • 在 Ubuntu 12.04 Server 上安装 Rails 环境
  • ubuntu 12.04 安装 Nginx+PHP5 (PHP-FPM) +MySQL主机详解
  • Linux(ubuntu)下配置android环境
  • Ubuntu 10.04上搭建Ruby on Rails环境
  • Ubuntu 10.10中关闭按钮位置的改变
  • Ubuntu下检测CPU温度的工具
  • Ubuntu Server增添关机用户
  • Ubuntu 11.04安装火狐5
  • ubuntu 10.04下搭建samba文件服务器
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .