O Apache começa com “Erro de sintaxe no /etc/httpd/conf/httpd.conf: Comando inválido 'remove'”

1

Depois de alterar o tamanho de upload do arquivo php.ini max e o tamanho máximo da postagem, o reinício do apache mostra o erro no título. Por quê? E como resolver isso?

# vi /etc/php.ini
# service httpd restart


# service httpd start
Starting httpd: Syntax error on line 304 of /etc/httpd/conf/httpd.conf:
Invalid command 'remove', perhaps misspelled or defined by a module not included in the server configuration

A linha 304 segue:

<Directory />
    Options Includes Indexes FollowSymLinks MultiViews
    remove word Indexes
    Options Includes FollowSymlinks MultiViews
    AllowOverride None
</Directory>
    
por user1775888 17.09.2014 / 06:57

1 resposta

4

del defina as linhas 3 e 4 nesse fragmento. Sua configuração deve se parecer com isso

<Directory />
    Options Includes Indexes FollowSymLinks MultiViews
    AllowOverride None
</Directory>
    
por 17.09.2014 / 07:19