mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 22:08:07 -04:00
19 lines
345 B
Nginx Configuration File
19 lines
345 B
Nginx Configuration File
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;
|
|
}
|
|
}
|
|
}
|