Earlier quoted context omitted.
Yes. I think they do that on purpose to get people to automate the certificate renewal. Their default client of course messes with all sorts of configuration to make auto-renew work "out of the box". Many people (myself included) aren't fans of their client getting so much access, but there are other clients out there that don't need it. I use acme-tiny[0] in a small shell cronjob once a month. It lets acme-tiny requ…
Stop spreading FUD: it does not "mess with all sorts of configuration". _Renewal doesn't touch any config files at all._ "letsencrypt-auto" puts the certs/keys under /etc/letsencrypt/keys. On renewal, new files get added. Old files are never touched. /etc/letsencrypt/live contains symlinks to the most recent files. Your webserver config uses these => its config does not need to be changed for renewal. What you're tal…
Let's Encrypt has issued its first million certificates
51–60 of 156 posts
Re: Let's Encrypt has issued its first million certificates
#52> It is clear that the cost and bureaucracy of obtaining certificates was forcing many websites to continue with the insecure HTTP protocol I never realized this so clearly, but it's true. The biggest hindrance to security until LE was that certs were expensive and hard to install. I don't think it was so much the former as the latter. I'd gladly pay 10% more for my cert if it meant my server could renew automaticall…
Re: Let's Encrypt has issued its first million certificates
#53Earlier quoted context omitted.
Stop spreading FUD: it does not "mess with all sorts of configuration". _Renewal doesn't touch any config files at all._ "letsencrypt-auto" puts the certs/keys under /etc/letsencrypt/keys. On renewal, new files get added. Old files are never touched. /etc/letsencrypt/live contains symlinks to the most recent files. Your webserver config uses these => its config does not need to be changed for renewal. What you're tal…
> Stop spreading FUD: it does not "mess with all sorts of configuration". It does more than you'd expect, IMO. > letsencrypt-auto is a wrapper which installs some dependencies from your OS standard package repositories (e.g. using apt-get or yum), and for other dependencies it sets up a virtualized Python environment with packages downloaded from PyPI. http://letsencrypt.readthedocs.org/en/latest/using.html I was cer…
path/to/letsencrypt-auto certonly --webroot --renew-by-default -w /var/www/letsencrypt/ -d example.com
and puts the signed certificates into /etc/letsencrypt/live/excample.com/fullchain.pem . This is followed by a service nginx reload
I did not trust their automatic configuration as well so I simply configured nginx to use the keys + cert and to serve .well-known/acme from /var/www/letsencrypt/ for all my domains.
That's all. It works quite fine and if something does not work (e.g. python breaks.) such that the renewal is unsuccessful. LE will send you an email in advance (I think 30 days) so you have plenty of time to look after it.
Re: Let's Encrypt has issued its first million certificates
#54I hope that Let's Encrypt will be able to issue wildcard certificates at some point.
Re: Let's Encrypt has issued its first million certificates
#55The default LE client was kind of a pain to work with. The docker container was better but where it really helped was the Lego golang implementation. That one 'just works' and was super easy to setup behind nginx to run automatically. It also writes a nicer config dir.
I've recently compared 10 different Let's Encrypt / ACME clients: https://www.metachris.com/2015/12/comparison-of-10-acme-lets...
Re: Let's Encrypt has issued its first million certificates
#56The default LE client was kind of a pain to work with. The docker container was better but where it really helped was the Lego golang implementation. That one 'just works' and was super easy to setup behind nginx to run automatically. It also writes a nicer config dir.
https://community.letsencrypt.org/t/list-of-client-implement...
Re: Let's Encrypt has issued its first million certificates
#57I hope that Let's Encrypt will be able to issue wildcard certificates at some point.
Re: Let's Encrypt has issued its first million certificates
#58How useful is this for a home server where there is no domain name registered? Can it be configured for my local secure web server?
Alternatively you could use a self signed cert and sign it to localhost or whatever, then configure all your browsers to trust this certificate.
Re: Let's Encrypt has issued its first million certificates
#59I hope that Let's Encrypt will be able to issue wildcard certificates at some point.
That would be nice, but with it being so easy to get a certificate, you could just add a new SSL cert when you add the new subdomain.
[1] https://community.letsencrypt.org/t/rate-limits-for-lets-enc...
Re: Let's Encrypt has issued its first million certificates
#60How useful is this for a home server where there is no domain name registered? Can it be configured for my local secure web server?
In general, certificate authorities should only issue certificates with unambiguous subjects.
Of course, if you don't need a certificate that is automatically trusted by everyone, then you can still generate a certificate yourself, without the help of a Let's Encrypt or any other CA. You would have to configure the machines on your network to trust it though.