Skip to content

Instantly share code, notes, and snippets.

@skaji
Last active December 11, 2015 06:18
Show Gist options
  • Save skaji/4558174 to your computer and use it in GitHub Desktop.
Save skaji/4558174 to your computer and use it in GitHub Desktop.
static ファイルをキャッシュさせない
#!/usr/bin/env perl
use Mojolicious::Lite;
get '/' => sub {
my $self = shift;
$self->render_static('image.png');
};
hook before_routes => sub {
my $c = shift;
$c->req->headers->if_modified_since(
'Thu, 01 Jun 1970 00:00:00 GMT'
);
};
app->start;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment