12 Feb
2016
12 Feb
'16
9:30 p.m.
Hi! 2016-02-12 23:25 GMT+02:00 Nikos Vaggalis <nikos.vaggalis@gmail.com>:
you could use Plack::Builder;
append the following inside your app.psgi file
use Plack::Builder;
builder { enable "Auth::Basic", authenticator => \&authen_cb; }
sub authen_cb { my($username, $password, $env) = @_; return ($username eq 'testuser' && $password eq 'testpassword') }
Thank you for quick response. As I see, it provides full authentication capabilities itself, but I still don't figure out, how I could see the value of $username inside my app? -- Wbr, Kõike hääd, Gunnar