日期:2011-12-23 21:28:00  来源:本站整理

Ubuntu Linux下apache基于域名的虚拟主机配置详解[服务器安全]

赞助商链接



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

近来在学习linux,本日在linux下配置了下虚拟主机,下面是步骤:
要配置的网站http://www.myhack58.com
虚拟主机文件 myweb
1、首先在 /etc/apache2/sites-available 目录下新建一个空的虚拟主机文件myweb

cd /etc/apache2/sites-available
touch myweb

2、退出返回到apache2目录,在sites-enabled下成立myweb的软衔接

cd /etc/apache2/sites-enabled
ln -f -s ../sites-available/myweb myweb

3、用vi翻开myweb,举行配置以下:

<VirtualHost *:80>
ServerName www.xylxq.com
ServerAlias xylxq.com *.xylxq.com
ServerAdmin webmaster@a.com

DocumentRoot /var/www/php100/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/php100/>
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>


4、履行a2ensite myweb 使虚拟主机见效,若要失效则为 a2dissite myweb

a2ensite myweb

5、用restart重启或reload重载apache

/etc/init.d/apache2 reload


6、改正host文件,加入127.0.0.1 http://www.myhack58.com

vi /etc/hosts

目前网站就指向到/var/www/myweb文件夹中,可以在此中增添项目
  以上是“Ubuntu Linux下apache基于域名的虚拟主机配置详解[服务器安全]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • 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 .