]>
iEval git - gruntmaster-page.git/blob - app.psgi
6 use Plack
::App
::Gruntmaster
;
11 sub CONTENT_SECURITY_POLICY
() {
16 frame-ancestors 'none'
18 referrer origin-when-cross-origin
32 $db //= Gruntmaster
::Data
->connect($ENV{GRUNTMASTER_DSN
} // 'dbi:Pg:');
33 $env->{'gruntmaster.dbic'} = $db;
41 my $resp = $app->($_[0]);
42 my $hdrs = Plack
::Util
::headers
($resp->[1]);
43 $hdrs->set('Content-Security-Policy', CONTENT_SECURITY_POLICY
);
44 $hdrs->set('Cache-Control', 'public, max-age=604800') if $_[0]->{PATH_INFO
} =~ qr
,^/static/,;
45 $resp->[1] = $hdrs->headers;
50 Log
::Log4perl
->init_once('log.conf');
51 $ENV{DBIC_NULLABLE_KEY_NOWARN
} = 1;
54 enable_if
{ $_[0]->{PATH_INFO
} eq '/ok' } sub { sub{ [200, [], []] }};
55 enable
'ContentLength';
57 enable
'Static', path
=> qr
,^/static/,;
58 enable
'Log4perl', category
=> 'plack';
59 enable \
&add_database
;
60 enable
'+Plack::App::Gruntmaster::Auth',
61 dbi_connect
=> [$ENV{GRUNTMASTER_DSN
} // 'dbi:Pg:', '', ''],
62 realm
=> 'Gruntmaster 6000',
63 mail_from
=> $ENV{GRUNTMASTER_RESET_FROM
};
64 Plack
::App
::Gruntmaster
->run_if_script
This page took 0.052313 seconds and 4 git commands to generate.