<div dir="ltr"><div>you could use Plack::Builder;<br><br></div>append the following inside your app.psgi file <br><br>use Plack::Builder;<br><br>builder {<br>      enable "Auth::Basic", authenticator => \&authen_cb;<br>}<br><br>sub authen_cb {<br>      my($username, $password, $env) = @_;<br>      return ($username eq 'testuser' && $password eq 'testpassword') <br>}<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Feb 12, 2016 at 11:09 PM, WK <span dir="ltr"><<a href="mailto:wanradt@gmail.com" target="_blank">wanradt@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi!<br>
<br>
I try to run  one simple Dancer app behind Apache proxy and because<br>
there is a bunch of old CGI scripts running on same server, restricted<br>
by basic authentication, I'd like to use the same authentication<br>
scheme in Dancer app too.<br>
<br>
My Apache config looks like this:<br>
<br>
<Location /xyz/z ><br>
    ProxyPass <a href="http://localhost:5001" rel="noreferrer" target="_blank">http://localhost:5001</a><br>
    ProxyPassReverse <a href="http://localhost:5001" rel="noreferrer" target="_blank">http://localhost:5001</a><br>
    RequestHeader set Request-Base /xyz/z<br>
    AuthName "myadmin"<br>
    AuthType basic<br>
    AuthUserFile /etc/htpasswd.adm<br>
    Require valid-user<br>
</Location><br>
<br>
So far, so good.<br>
<br>
Problem: in Dancer I can't access env variable REMOTE_USER.<br>
<br>
AFAIU Dancer::Request object does not forward this variable.  What is<br>
the best way to access REMOTE_USER value inside Dancer?<br>
<br>
Tia,<br>
<span class="HOEnZb"><font color="#888888">--<br>
Wbr,<br>
Kõike hääd,<br>
<br>
Gunnar<br>
_______________________________________________<br>
dancer-users mailing list<br>
<a href="mailto:dancer-users@dancer.pm">dancer-users@dancer.pm</a><br>
<a href="http://lists.preshweb.co.uk/mailman/listinfo/dancer-users" rel="noreferrer" target="_blank">http://lists.preshweb.co.uk/mailman/listinfo/dancer-users</a><br>
</font></span></blockquote></div><br></div>