X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=app.psgi;h=a2a62ef716736a5f6b7e293f3c80516a60a7a547;hb=28aeef34bd56449cb938dc86a563fd44b05a4a2d;hp=2c264f9bc70fe7bfdd25cbb262642fe8bbc77959;hpb=c039d63e2d631c200f73ae59de2a7d1e66debc71;p=gruntmaster-page.git diff --git a/app.psgi b/app.psgi index 2c264f9..a2a62ef 100644 --- a/app.psgi +++ b/app.psgi @@ -45,13 +45,13 @@ my $access_logger = Log::Log4perl->get_logger('access'); $ENV{DBIC_NULLABLE_KEY_NOWARN} = 1; builder { + enable_if { $_[0]->{PATH_INFO} eq '/ok' } sub { sub{ [200, [], []] }}; enable 'AccessLog', format => ACCESSLOG_FORMAT, logger => sub { $access_logger->info(@_) }; enable 'ContentLength'; enable \&add_headers; enable 'Static', path => qr,^/static/,; enable 'Log4perl', category => 'plack'; enable_if { shift->{HTTP_AUTHORIZATION} } 'Auth::Basic', authenticator => \&authenticate, realm => 'Gruntmaster 6000'; - enable_if { $_[0]->{PATH_INFO} eq '/ok' } sub { sub{ [200, [], []] }}; enable sub { my $app = $_[0]; sub { $_[0]->{'gruntmaster.dbic'} = $db; $app->($_[0]) } }; Plack::App::Gruntmaster->run_if_script }