Skip to content

Instantly share code, notes, and snippets.

@netwjx
netwjx / Minify.pm
Last active December 26, 2015 22:59 — forked from hjue/Minify.pm
看起来fork一份就可以修改了,貌似是新的了
package Minify;
use nginx;
use JavaScript::Minifier qw(minify);
sub handler {
my $r=shift;
my $cache_dir="/tmp";
my $cache_file=$r->uri;
$cache_file=~s!/!_!g;
$cache_file=$r->header_in("Host").$cache_file;