readme: fix example to reflect SSL key management changes

Thanks @yarikdot

https://github.com/jfryman/puppet-nginx/issues/638#issuecomment-118164472
This commit is contained in:
Matthew Haughton 2015-07-02 21:04:06 -04:00
parent af1f9cad39
commit c1563a7eb3

View file

@ -237,8 +237,8 @@ define web::nginx_ssl_with_redirect (
location_cfg_append => $location_cfg_append, location_cfg_append => $location_cfg_append,
index_files => [ 'index.php' ], index_files => [ 'index.php' ],
ssl => true, ssl => true,
ssl_cert => 'puppet:///modules/sslkey/wildcard_mydomain.crt', ssl_cert => '/path/to/wildcard_mydomain.crt',
ssl_key => 'puppet:///modules/sslkey/wildcard_mydomain.key', ssl_key => '/path/to/wildcard_mydomain.key',
} }