From: Marius Gavrilescu Date: Fri, 27 Mar 2015 18:11:45 +0000 (+0200) Subject: Do not handle static files (nginx does this already) X-Git-Url: http://git.ieval.ro/?a=commitdiff_plain;h=cbae57719c80843e922c3a1b248a56b8e8bff5b6;hp=0a8209edec6578ec0c2e6fbc1f6462b1de75b72c;p=gruntmaster-page.git Do not handle static files (nginx does this already) --- diff --git a/app.psgi b/app.psgi index b5fd756..323748d 100644 --- a/app.psgi +++ b/app.psgi @@ -44,7 +44,6 @@ sub add_headers { my $hdrs = Plack::Util::headers($resp->[1]); $hdrs->set('Content-Security-Policy', CONTENT_SECURITY_POLICY); $hdrs->set('Link', '; rel=stylesheet') if $hdrs->get('Content-Type') =~ m,^text/html,; - $hdrs->set('Cache-Control', 'public, max-age=604800') if $_[0]->{PATH_INFO} =~ qr,^/static/,; $resp->[1] = $hdrs->headers; $resp; } @@ -57,7 +56,6 @@ 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',