Ubuntu 20.04 - Any tips? AttributeError: module 'acme.challenges' has no attribute 'TLSSNI01'

For a very fragile workaround, you can edit /usr/lib/python3/dist-packages/certbot_nginx/configurator.py and replace

return [challenges.HTTP01, challenges.TLSSNI01]

with

return [challenges.HTTP01]

(or you… can use the webroot plugin)

4 Likes