无法调整 apache 说 bad_httpd_conf

无法调整 apache 说 bad_httpd_conf

我安装了 Apache 并进行sites_enabled/000_default了如下编辑

<VirtualHost *:80>
ServerAdmin webmaster@localhost

ServerName lokal
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 ${APACHE_LOG_DIR}/error.log

# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn

CustomLog ${APACHE_LOG_DIR}/access.log combined

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 *:80>
ServerAdmin webmaster@localhost
ServerName firsatbulur.bom
DocumentRoot /var/www
<Directory /var/www/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    allow from all
</Directory>

</VirtualHost>

当我尝试去http://firsatbulur.bom

Site Temporarily Unavailable
We apologize for the inconvenience. Please contact the webmaster/ tech support immediately to have them rectify this.

error id: "bad_httpd_conf" 

我尝试使用以下方式审计日志尾部-f / var / log / apache2 / *据此,没有错误。

请注意:我可以通过 127.0.0.1 访问 noıramlly。我的问题:

  1. Apache为什么会报这样的错误?
  2. 谁会想到出现这样的错误,却不记录它?
  3. 我该如何解决这个问题?我漫游了半天,但除了 Dreamhosters 之外没有其他机会。

该机器正在运行 Mint Katya(ubuntu 11.04)。

答案1

一般方法是:获取未编辑的 httpd.conf(最好保留一份,如果没有,请下载一份新副本)并安装。Apache 现在能正常工作吗?假设可以,请逐步进行更改,直到它停止工作。我们希望答案会变得清晰。

答案2

它告诉您 httpd 配置中存在语法错误。尝试运行以下命令:

apachectl configtest

这应该会告诉您它无法理解配置的哪一部分。如果您之后需要更多帮助,请将该命令的输出添加到您的问题中。

相关内容