|
|

楼主 |
发表于 2007-11-28 22:30:27
|
显示全部楼层
netstat -p 竟然告诉我是apache2在连自己。
<IfModule mpm_peruser_module>
ServerEnvironment apache apache
</IfModule>
会和它有关吗?
我刚把它去掉了。
#cat /etc/apache2/vhosts.d/00_wiki_blog.conf |grep \# -v
<IfDefine DEFAULT_VHOST>
Listen 80
NameVirtualHost *:80
<VirtualHost *:80>
Include /etc/apache2/vhosts.d/default_vhost.include
DocumentRoot /var/www/galaxy/
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from xxx.xxx.xxx.0/255.255.255.0 ::1/128 xxx.xxx.xxx.0/255.255.255.0
</Directory>
Alias /wikiold/ "/biology/xxxwww/apache2/wiki/"
<Directory /biology/xxxwww/apache2/wiki/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
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>
</IfDefine> |
|