mirror of
https://github.com/certbot/certbot.git
synced 2026-07-27 00:00:44 +02:00
Currently, accidentally including a scheme with the domain name does not produce a particularly helpful error message. Examples without this change: 1. `certbot certonly -d https://test.example.com --webroot`: Saving debug log to /tmp/certbot/logs/letsencrypt.log Obtaining a new certificate An unexpected error occurred: The request message was malformed :: Error creating new authz :: Invalid character in DNS name Please see the logfiles in /tmp/certbot/logs for more details. 2. `certbot certonly -d http://hoeveelmensengaveneeneuroomtezienhoeveelmenseneeneurogaven.example.com` Requested domain http://hoeveelmensengaveneeneuroomtezienhoeveelmenseneeneurogaven.example.com is not a FQDN because label http://hoeveelmensengaveneeneuroomtezienhoeveelmenseneeneurogaven is too long. Examples with this change: 1. `certbot certonly -d https://test.example.com --webroot`: Requested name https://test.example.com appears to be a URL, not a FQDN. Try again without the leading "https://". 2. `certbot certonly -d http://hoeveelmensengaveneeneuroomtezienhoeveelmenseneeneurogaven.example.com` Requested name http://hoeveelmensengaveneeneuroomtezienhoeveelmenseneeneurogaven.example.com appears to be a URL, not a FQDN. Try again without the leading "http://". (Resolves #4785)