From 8198e6c10551d79ee3d8367a1bdd6aa8a73c2309 Mon Sep 17 00:00:00 2001 From: Francois Marier Date: Mon, 1 Jun 2015 17:00:09 +1200 Subject: [PATCH] Rename the nginx ssl config file to match the final filename This config file will ultimately exist as /etc/letsencrypt/options-ssl-nginx.conf so we may as well use the right filename everywhere. This is much easier to deal with in the Debian packaging. --- MANIFEST.in | 2 +- letsencrypt_nginx/constants.py | 2 +- letsencrypt_nginx/{options-ssl.conf => options-ssl-nginx.conf} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename letsencrypt_nginx/{options-ssl.conf => options-ssl-nginx.conf} (100%) diff --git a/MANIFEST.in b/MANIFEST.in index f9364d64f..5149594f3 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -12,4 +12,4 @@ recursive-include letsencrypt_apache/tests/testdata * include letsencrypt_apache/options-ssl.conf recursive-include letsencrypt_nginx/tests/testdata * -include letsencrypt_nginx/options-ssl.conf +include letsencrypt_nginx/options-ssl-nginx.conf diff --git a/letsencrypt_nginx/constants.py b/letsencrypt_nginx/constants.py index 6c15b1664..73b80c809 100644 --- a/letsencrypt_nginx/constants.py +++ b/letsencrypt_nginx/constants.py @@ -11,6 +11,6 @@ CLI_DEFAULTS = dict( MOD_SSL_CONF = pkg_resources.resource_filename( - "letsencrypt_nginx", "options-ssl.conf") + "letsencrypt_nginx", "options-ssl-nginx.conf") """Path to the Nginx mod_ssl config file found in the Let's Encrypt distribution.""" diff --git a/letsencrypt_nginx/options-ssl.conf b/letsencrypt_nginx/options-ssl-nginx.conf similarity index 100% rename from letsencrypt_nginx/options-ssl.conf rename to letsencrypt_nginx/options-ssl-nginx.conf