Falha no teste de configuração ao reiniciar o Apache

0

Quando tentei reiniciar o apache2, recebi o seguinte erro.

* Restarting web server apache2                                         [fail] 
* The apache2 configtest failed.
Output of config test was:
AH00526: Syntax error on line 14 of /etc/apache2/conf-enabled/httpd.conf:
Either all Options must start with + or -, or no Option may.
Action 'configtest' failed.
The Apache error log may have more information.

O conteúdo de httpd.conf é o seguinte.

<Directory "/var/www">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
#   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important.  Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
Options Indexes MultiViews +FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
#   Options FileInfo AuthConfig Limit
#
AllowOverride All

#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all

</Directory>

O que deu errado?

    
por Aneeez 19.08.2014 / 07:43

1 resposta

1

Use essa sintaxe no arquivo de configuração na linha 14 :

Options Indexes MultiViews FollowSymLinks
    
por chaos 19.08.2014 / 07:46