X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=app.psgi;h=837dd60ab51e100408d84934eb6d7fd80a4a724c;hb=c13e110a3f07e2aef0892f64207f20dcd01ebdd6;hp=a13a73e4965ba82ca2d26b8a40a8c094d2bb3094;hpb=3dbe882702b33302251aee9cc2d1d54b631ab861;p=gruntmaster-page.git diff --git a/app.psgi b/app.psgi index a13a73e..837dd60 100644 --- a/app.psgi +++ b/app.psgi @@ -41,6 +41,7 @@ sub add_headers { my $resp = $app->($_[0]); my $hdrs = Plack::Util::headers($resp->[1]); $hdrs->set('Content-Security-Policy', CONTENT_SECURITY_POLICY); + $hdrs->set('Cache-Control', 'public, max-age=604800') if $_[0]->{PATH_INFO} =~ qr,^/static/,; $resp->[1] = $hdrs->headers; $resp; } @@ -53,6 +54,7 @@ builder { enable_if { $_[0]->{PATH_INFO} eq '/ok' } sub { sub{ [200, [], []] }}; enable 'ContentLength'; enable \&add_headers; + enable 'Static', path => qr,^/static/,; enable 'Log4perl', category => 'plack'; enable \&add_database; enable '+Plack::App::Gruntmaster::Auth',