Bonjour à tous, je souhaite ajouter un site dans mon virtualhost afin d'y effectuer une authentification ntlm simple, j'ai bien suivis des posts indiquant une procédure helas ma page de chargement client reste sur "connexion en cours"

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
 
<VirtualHost *:80>
    ServerAdmin webmaster@localhost
 
    DocumentRoot /var/www
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /var/www/>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>
 
    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
        AllowOverride None
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
    </Directory>
 
    ErrorLog ${APACHE_LOG_DIR}/error.log
 
    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn
 
    CustomLog ${APACHE_LOG_DIR}/access.log combined
PerlModule Apache2::AuthenNTLM
<Directory "/var/www/area">
PerlAuthenHandler Apache2::AuthenNTLM
AuthType ntlm,basic
AuthName paipartners
require valid-user
PerlAddVar ntdomain  "LOCALDOMAIN.ORG SRV1"
PerlSetVar defaultdomain LOCALDOMAIN.ORG
PerlSetVar splitdomainprefix 1
PerlSetVar ntlmdebug 0 
PerlSetVar ntlmauthoritative off
</Directory>
</VirtualHost>
Je précise que le serveur se situe hors domaine dérriere un proxy : 172.16.1.49 (Serveur WEB en DMZ) et mon DC (10.0.0.100 en VERT) j'ai autorisé le port 80 vers orange et je pointe bien dessus avec le virtualhost "natif"

Quelqu'un a il une idée afin de trouver l'origine du problème ?

Merci par avance !