Initial version of nginx parser roundtrip test

This commit is contained in:
Seth Schoen
2016-07-11 13:58:21 -07:00
parent 9431874c72
commit b48ddac528
203 changed files with 8263 additions and 0 deletions
@@ -0,0 +1,19 @@
http {
perl_modules perl;
# Get this module from the CPAN and put the file in this directory.
# or install it systemwide
perl_require Javascript/Minifier.pm;
perl_require Minify.pm;
root /var/www;
server {
location / {
index index.html index.htm;
}
location ~ \.js$ {
perl Minify::handler;
}
}
}