Questions tagged [certbot]

297 questions
5
votes
3 answers

certbot setting up ssl, error "No module named 'ConfigParser'"

I am setting up my website to use https via certbot. I am following the directions here I run the wget and chmod with no problems, but when I execute: ./certbot-auto I get the following errors: Setting up gyp (0.1+20150913git1f374df9-1ubuntu1)…
john-jones
  • 75
  • 13
5
votes
1 answer

How can I disable "Subject Alternative Name" from being included in Certbot Let's Encrypt certificates?

Using Certbot to install an R3 Let's Encrypt certificate on an nginx webserver causes all the other domains in the nginx configuration to be included under "Subject Alternative Name" on the certificate. This is undesirable for my use case. I read…
Altimus Prime
  • 334
  • 2
  • 7
  • 20
5
votes
1 answer

Letsencrypt for all subdomains *.example.com

I'd like to obtain one certificate working for all my subdomains *.example.com. This works: certbot-auto certonly --webroot --webroot-path /home/www/example/ --domain example.com --domain www.example.com --email…
Basj
  • 569
  • 3
  • 8
  • 27
4
votes
1 answer

Installing certbot - error - "nothing provides pyparsing"

I'm trying to set up let's encrypt on my Amazon ec2 RHEL nginx server, via the command $ sudo yum install certbot-nginx but it keeps failing: $ sudo yum install certbot-nginx Last metadata expiration check: 2:58:11 ago on Sat 17 Aug 2019 11:29:45 PM…
Mike Willis
  • 193
  • 1
  • 14
4
votes
1 answer

Let's encrypt: renew vs new, or: why renew

Might be a stupid question but: where is the difference between renewing a Let's encrypt certificate and just getting a new one? Related question and background for this question: do I need to keep the account data from certbot? As long as I can…
sc911
  • 335
  • 2
  • 14
4
votes
1 answer

How to make Certbot ignore a particular domain in nginx?

I have ~30 domains running on my server, all of them with SSL certificates managed by the Certbot nginx plugin. All of them, except one... let's call it selfsigned.example.com. This domain uses a self-signed certificate because it's being accessed…
Thomas
  • 791
  • 1
  • 8
  • 16
4
votes
2 answers

nginx "ERR_TOO_MANY_REDIRECTS" after add ssl

After i add Let's Encrypt certificate to my website with CertBot i get ERR_TOO_MANY_REDIRECTS when i try to visit the domain of my website. some info : -mywebsite build with django, nginx and gunicorn. server { server_name www.example.com…
DAMAR225
  • 143
  • 1
  • 1
  • 4
4
votes
1 answer

Certbot renew certificates with autoprovided webroot

I have created some certificated using certbot's --standalone option but I want to renew them so I run (testing if will get renewed): sudo certbot renew --dry-run But for some domains I get the error Attempting to renew cert from…
Dimitrios Desyllas
  • 523
  • 2
  • 10
  • 27
4
votes
1 answer

SSL_ERROR_RX_RECORD_TOO_LONG certbot

I have the following setup: Apache 2.4 Ubuntu 16.04 LTS letsencrypt / certbot Now, as soon as I enable the following .conf on the default server, all my configured top level domains receive a SSL_ERROR_RX_RECORD_TOO_LONG error. If I disable this…
Michael
  • 43
  • 1
  • 4
4
votes
2 answers

monit, let's encrypt, and file permissions

I decided to put monit on my vps running centos 7. I've already got let's encrypt on the server and the certs are installed. I wanted to point monit at the fullchain.pem or the cert.pem, but I get this error. Dec 30 00:56:52 [23926]: The SSL…
4
votes
2 answers

Can't install certbot on ubuntu 16.04.3

I'm trying to install certbot in my ubuntu 16.04.3 server, the same commands that work with 16.04.2 won't do it. The python installed is default Python 2.7.12 This is the installation script: #!/bin/bash sudo apt-get update sudo apt-get install…
Gus
  • 163
  • 1
  • 7
4
votes
1 answer

Will certbot actually renew my certificate?

Looking at /etc/cron.d/certbot, I don't think it will! That file includes the line: 0 */12 * * * root test -x /usr/bin/certbot -a \! -d /run/systemd/system && perl -e 'sleep int(rand(43200))' && certbot -q renew and, unless I'm reading it wrong,…
4
votes
1 answer

certbot renew crashes nginx and all websites go offline

When sudo certbot renew command is run, nginx server is crashing. The error log in systemd looks like this: - The job identifier is 48862. Sep 01 11:31:52 phoenix.medialab.ntua.gr systemd[1]: nginx.service: Main process exited, code=dumped,…
user000001
  • 141
  • 4
4
votes
1 answer

Can I enable TLS 1.3 with Certbot?

I am working with Nginx and Certbot, I have secured a domain with HTTPS. I would like to get the domain up to TLS 1.3. The Nginx server block for my domain get's it's SSL protocols from the included file Certbot creates. The file…
Norman Potts
  • 41
  • 1
  • 4
3
votes
2 answers

Export client certificate from Let's Encrypt certificates

I'm running Debian and have certbot for creating Let's Encrypt certificate. I act as client towards a TLS server, and needs to handover my client certificate for approval. I've got the following files generated by…
Alfred Balle
  • 399
  • 2
  • 6
  • 22
1
2
3
19 20