From 4fbb5cb80f782ca30785f7171b3b95d6e95eaec6 Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Sat, 27 Jun 2015 16:51:58 +0000 Subject: [PATCH] Address review comments --- letsencrypt_nginx/configurator.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/letsencrypt_nginx/configurator.py b/letsencrypt_nginx/configurator.py index 6613962c6..6a492428d 100644 --- a/letsencrypt_nginx/configurator.py +++ b/letsencrypt_nginx/configurator.py @@ -281,8 +281,10 @@ class NginxConfigurator(common.Plugin): return cert, key.file def _make_server_ssl(self, vhost): - """Makes a server SSL based on server_name and filename by adding - a 'listen 443 ssl' directive to the server block. + """Make a server SSL. + + Make a server SSL based on server_name and filename by adding a + ``listen IConfig.dvsni_port ssl`` directive to the server block. .. todo:: Maybe this should create a new block instead of modifying the existing one?