From: Silvio Rhatto Date: Sat, 23 May 2015 14:42:42 +0000 (-0300) Subject: Use only ssl::cert X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=ffc860e04833505cf785c2bbf96ada619bb392c6;p=puppet-nodo.git Use only ssl::cert --- 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'], }