Release 10.2.0 #114

Manually merged
jlecour merged 103 commits from unstable into stable 2020-09-17 14:14:16 +02:00
2 changed files with 6 additions and 0 deletions
Showing only changes of commit 3bd0a4ffb3 - Show all commits

View file

@ -27,6 +27,8 @@ The **patch** part changes incrementally at each release.
### Fixed
* certbot: restore compatibility with old Nginx
### Removed
### Security

View file

@ -1,5 +1,9 @@
location ~ /.well-known/acme-challenge {
{% if ansible_distribution == "Debian" and ansible_distribution_major_version is version('8', '<=') %}
alias {{ certbot_work_dir }}/.well-known/acme-challenge;
{% else %}
alias {{ certbot_work_dir }}/;
{% endif %}
try_files $uri =404;
allow all;
}