Comando inválido 'AuthAuthoritative'

1

Estou tentando iniciar o servidor Apache2, mas recebo este erro:

Invalid command 'AuthAuthoritative', perhaps misspelled or defined by a module not included in the server...iguration

Esta é a configuração em httpd.conf :

AllowOverride           all

Satisfy                 any

AuthAuthoritative       on
AuthUserFile            /home/netmet/netMet/etc/apache.passwd
AuthGroupFile           /home/netmet/netMet/etc/apache.group
AuthName                "netMET access's"
AuthType                Basic
require                 group netmet netmet-cgi

order                   deny,allow
deny from               all
allow from              host.domain.fr
    
por klaypez 21.04.2017 / 11:01

1 resposta

2

Lembre-se de carregar mod_auth . Se você usar alguma distribuição que tenha a2enmod , será apenas a2enmod auth .

    
por 21.04.2017 / 11:06