The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Mojolicious::Plugin::GzipStatic - Mojolicious Plugin to compress the static files before serving them.

SYNOPSIS

  # Mojolicious
  $self->plugin('GzipStatic');

  # Mojolicious::Lite
  plugin 'GzipStatic';

DESCRIPTION

Mojolicious::Plugin::GzipStatic is a Mojolicious plugin to compress the static files before serving them.

See https://en.wikipedia.org/wiki/HTTP_compression and http://mojolicious.org/perldoc/Mojolicious/Guides/Rendering#Post-processing-dynamic-content.

METHODS

Mojolicious::Plugin::GzipStatic inherits all methods from Mojolicious::Plugin and implements the following new ones.

register

  $plugin->register(Mojolicious->new);

Register plugin in Mojolicious application.

SEE ALSO

Mojolicious, Mojolicious::Guides, http://mojolicious.org, Mojolicious::Static, IO::Compress::Gzip.