日期: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基于域名的虚拟主机配置详解[服务器安全]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论