Webdav reescreve REMOTE_USER sempre vazio

2

Estou tentando reescrever um URL de acordo com o usuário autenticado. Mas REMOTE_USER está sempre vazio. Trabalhos de autenticação.

Estou bastante confuso aqui ... estou faltando alguma coisa?

RewriteEngine On
RewriteLog "/var/log/httpd/rewrite.log"
RewriteLogLevel 3

<Directory /home/storage>
        Order Allow,Deny
        Allow from all
        Dav On
        Options Indexes
        AllowOverride None

        AuthName "Webdav: insert your username and password"
        AuthType Basic
        AuthBasicProvider ldap
        AuthLDAPBindDN cn=adsyncldapagent,ou=Service,ou=AdminUsers,ou=ITS,dc=xx,dc=xx
        AuthLDAPBindPassword xxxx
        AuthzLDAPAuthoritative On
        AuthLDAPURL "ldap://xxxx/ou=Staff,ou=AUM,dc=xx,dc=xx?sAMAccountName?sub"

        <LimitExcept GET POST>
          Require valid-user
        </LimitExcept>
</Directory>

RewriteCond %{REQUEST_URI} ^/webdav
RewriteRule .   /home/storage/%{LA-U:REMOTE_USER}p

Este é o registro de regravação:

::1 - - [07/Mar/2013:20:26:17 +0100] [localhost/sid#7faeae695fe8][rid#7faeae766368/subreq] (2) init rewrite engine with requested uri /webdav
::1 - - [07/Mar/2013:20:26:17 +0100] [localhost/sid#7faeae695fe8][rid#7faeae766368/subreq] (3) applying pattern '.' to uri '/webdav'
::1 - - [07/Mar/2013:20:26:17 +0100] [localhost/sid#7faeae695fe8][rid#7faeae766368/subreq] (2) rewrite '/webdav' -> '/home/storage/p'
    
por Chris 07.03.2013 / 20:29

1 resposta

4

Você não tem nenhuma autenticação configurada para /webdav , então no momento em que esse RewriteRule é acionado, é não REMOTE_USER . Você precisa ter /webdav protegido pela mesma configuração de autenticação que está protegendo /home/storage .

Algo parecido com isto:

<Directory /home/storage>
        AuthName "WebDAV"
        AuthType Basic
        AuthBasicProvider ldap
        AuthzLDAPAuthoritative On
        AuthLDAPURL "ldap://xxxx/ou=Staff,ou=AUM,dc=xx,dc=xx?sAMAccountName?sub"
</Directory>

<Location /webdav/>
        AuthName "WebDAV"
        AuthType Basic
        AuthBasicProvider ldap
        AuthzLDAPAuthoritative On
        AuthLDAPURL "ldap://xxxx/ou=Staff,ou=AUM,dc=xx,dc=xx?sAMAccountName?sub"
</Location>

RewriteRule ^/webdav/(.*) /var/www/webdav/%{LA-U:REMOTE_USER}/$1
    
por 07.03.2013 / 22:36