diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-06-17 12:19:18 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-06-17 12:19:18 -0300 |
commit | 7a288a10056745a603869daf148d68bfe68ab723 (patch) | |
tree | 8e85952b8deec74f1212f3462ad27b31dfb194a4 | |
parent | e9e704e1368f2d083298024554e0a06672f767ce (diff) | |
download | puppet-nginx-7a288a10056745a603869daf148d68bfe68ab723.tar.gz puppet-nginx-7a288a10056745a603869daf148d68bfe68ab723.tar.bz2 |
Do not setup ssl for default site
-rw-r--r-- | manifests/init.pp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 110a368..a17f847 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -22,6 +22,7 @@ class nginx inherits nginx::base { # Default site nginx::site { "default": ensure => present, + ssl => absent, source => 'template', certbot => false, } |