From 9924b74aba954224e48e8f9264ccfc58f38b988e Mon Sep 17 00:00:00 2001 From: helgeerbe <59169507+helgeerbe@users.noreply.github.com> Date: Tue, 23 Nov 2021 13:16:08 +0100 Subject: [PATCH 1/3] Update README.rst Correct file permissions. --- README.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index e356e9d..cfbba9a 100644 --- a/README.rst +++ b/README.rst @@ -74,7 +74,8 @@ accessed by other users on your system. The warning reads "Unsafe permissions on credentials configuration file", followed by the path to the credentials file. This warning will be emitted each time Certbot uses the credentials file, including for renewal, and cannot be silenced except by addressing the issue -(e.g., by using a command like ``chmod 600`` to restrict access to the file). +(e.g., by using a command like ``chmod 600`` to restrict access to the file and +``chmod 700`` to restrict access to the folder). Examples @@ -129,7 +130,7 @@ Once that's finished, the application can be run as follows:: It is suggested to secure the folder as follows:: chown root:root /etc/letsencrypt/.secrets -chmod 600 /etc/letsencrypt/.secrets +chmod 700 /etc/letsencrypt/.secrets Changelog ========= From 3976e00bf96b7ad87b8e8fb5d10526c6e2071ca8 Mon Sep 17 00:00:00 2001 From: Helge Date: Sun, 15 May 2022 15:00:17 +0200 Subject: [PATCH 2/3] New release 2022.05.15 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2fde469..14ebd6a 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup from setuptools import find_packages -version = "2021.09.20.post1" +version = "2022.05.15" install_requires = [ "acme>=1.8.0", From b4b3f24e1eab0efd33071d2664ccf828fe1160f8 Mon Sep 17 00:00:00 2001 From: Helge Date: Sun, 15 May 2022 15:02:44 +0200 Subject: [PATCH 3/3] Changelog in readme --- README.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.rst b/README.rst index cfbba9a..e5cdd98 100644 --- a/README.rst +++ b/README.rst @@ -135,6 +135,9 @@ chmod 700 /etc/letsencrypt/.secrets Changelog ========= +- 2022.05.15 + - Added capability to handle multiple domain validations #16 + - 2021.09.20.post1 - Fix version number