Merge remote-tracking branch 'origin/master' into dev
This commit is contained in:
commit
ad110403e0
2 changed files with 7 additions and 3 deletions
|
@ -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
|
on credentials configuration file", followed by the path to the credentials
|
||||||
file. This warning will be emitted each time Certbot uses the credentials file,
|
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
|
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
|
Examples
|
||||||
|
@ -129,11 +130,14 @@ Once that's finished, the application can be run as follows::
|
||||||
|
|
||||||
It is suggested to secure the folder as follows::
|
It is suggested to secure the folder as follows::
|
||||||
chown root:root /etc/letsencrypt/.secrets
|
chown root:root /etc/letsencrypt/.secrets
|
||||||
chmod 600 /etc/letsencrypt/.secrets
|
chmod 700 /etc/letsencrypt/.secrets
|
||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
- 2022.05.15
|
||||||
|
- Added capability to handle multiple domain validations #16
|
||||||
|
|
||||||
- 2021.09.20.post1
|
- 2021.09.20.post1
|
||||||
|
|
||||||
- Fix version number
|
- Fix version number
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -1,7 +1,7 @@
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
from setuptools import find_packages
|
from setuptools import find_packages
|
||||||
|
|
||||||
version = "2021.09.20.post1"
|
version = "2022.05.15"
|
||||||
|
|
||||||
install_requires = [
|
install_requires = [
|
||||||
"acme>=1.8.0",
|
"acme>=1.8.0",
|
||||||
|
|
Loading…
Reference in a new issue