Como instalar o mod_authz_host no Apache?

1

Quando coloco

Order deny,allow
Deny from all
Allow from dev.example.com

em /etc/apache2/conf.d/restrict.conf , em cima de service apache2 restart , obtenho

Syntax error on line 1 of /etc/apache2/conf.d/restrict.conf:
order not allowed here
Action 'configtest' failed.
The Apache error log may have more information.
   ...fail!

Por favor ajude.

    
por UrsinusTheStrong 02.03.2013 / 06:14

1 resposta

1

Seu problema não é que o mod_authnz_host não esteja instalado ou carregado, mas que você coloque essas diretivas no lugar errado. Eles são válidos apenas em <Location ...> ou <Directory ...> blocos como este:

<Location />
    Order deny,allow
    Deny from all
    Allow from dev.example.com
</Location>
    
por Dennis Kaarsemaker 02.03.2013 / 12:02