再一次,我的apache虛擬主機配置有問題。 (使用默認配置而不是我的特定配置)。如何調試apache虛擬主機配置?
問題並非真正的錯誤配置,而是如何解決它。
有沒有人有很好的建議來解決這類問題很快?
更多信息。
默認的conf文件是這個:不適用
NameVirtualHost *
<VirtualHost *>
ServerAdmin [email protected]
DocumentRoot /var/www/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</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/error.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>
以及虛擬主機的配置是這樣的一個:
<VirtualHost *:*>
ProxyPreserveHost On
ProxyPass/http://ip.ip.ip.ip:8088/
ProxyPassReverse/http://ip.ip.ip.ip:8088/
ServerName wiki.mydomain.com
</VirtualHost>
你想告訴我們問題是什麼?向我們展示您的conf文件也許會有幫助。 – davidstites 2011-03-29 14:50:11
你在使用什麼操作系統? – EmCo 2011-03-29 14:51:28
ubuntu 8.04 LTS – GaetanZ 2011-03-31 21:36:31