diff options
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'],    } | 
