La sortie de sudo apachectl -t -D DUMP_MODULES
Loaded Modules:
core_module (static)
log_config_module (static)
logio_module (static)
mpm_prefork_module (static)
http_module (static)
so_module (static)
alias_module (shared)
auth_basic_module (shared)
auth_digest_module (shared)
authn_file_module (shared)
authz_default_module (shared)
authz_groupfile_module (shared)
authz_host_module (shared)
authz_user_module (shared)
autoindex_module (shared)
cgi_module (shared)
deflate_module (shared)
dir_module (shared)
env_module (shared)
headers_module (shared)
mime_module (shared)
negotiation_module (shared)
php5_module (shared)
reqtimeout_module (shared)
rewrite_module (shared)
setenvif_module (shared)
ssl_module (shared)
status_module (shared)
Syntax OK
Il semble que le module d'authentification digest fonctionne sur mon serveur, mais lorsque j'essaie d'accéder à $_SERVER['PHP_AUTH_DIGEST'], la variable n'existe pas.
Ma configuration d'hôte virtuel est la suivante :
<VirtualHost *:80>
ServerName sam
DocumentRoot /var/www/sam/public/
ErrorLog /var/log/apache2/sam-error.log
SetEnv APPLICATION_ENV "development"
<Directory /var/www/sam/public>
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
#AuthType Digest
#AuthName "api"
</Directory>
</VirtualHost>