mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 16:19:13 +02:00
Initial version of nginx parser roundtrip test
This commit is contained in:
+19
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user