diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-05-23 11:42:42 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-05-23 11:42:42 -0300 |
commit | ffc860e04833505cf785c2bbf96ada619bb392c6 (patch) | |
tree | 3dd4929f27b2e9c1c0561ec70be5995bda03b901 /manifests | |
parent | 4d9f42c944a6b7041e76bf8bc79fa33053c741f3 (diff) | |
download | puppet-nodo-ffc860e04833505cf785c2bbf96ada619bb392c6.tar.gz puppet-nodo-ffc860e04833505cf785c2bbf96ada619bb392c6.tar.bz2 |
Use only ssl::cert
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/role/proxy.pp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/manifests/role/proxy.pp b/manifests/role/proxy.pp index bcff3dc..58dfcd2 100644 --- a/manifests/role/proxy.pp +++ b/manifests/role/proxy.pp @@ -1,11 +1,14 @@ class nodo::role::proxy inherits nodo::base::vserver { class { 'nginx': } - nginx::cert { "$::domain": } + ssl::cert { "$::domain": + notify => Service['nginx'], + } # For SNI # TODO: generate automatically ssl::cert { "example.org": + #generate => true, notify => Service['nginx'], } |