Automatic renewal and automatic renewal test help

My domain is:
notgerardo.com

I ran this command:
sudo certbot --nginx, which worked. Then I ran sudo certbot renew --dry-run, which failed. Actually I followed all the instructions as the certbot guide listed for Ubuntu 20.04 and nginx.

It produced this output:

$ sudo certbot renew --dry-run

Saving debug log to /var/log/letsencrypt/letsencrypt.log

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Processing /etc/letsencrypt/renewal/notgerardo.com-0001.conf

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Simulating renewal of an existing certificate for notgerardo.com

Failed to renew certificate notgerardo.com-0001 with error: Could not bind TCP port 80 because it is already in use by another process on this system (such as a web server). Please stop the program in question and then try again.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Processing /etc/letsencrypt/renewal/notgerardo.com.conf

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Simulating renewal of an existing certificate for notgerardo.com and www.notgerardo.com

Certbot failed to authenticate some domains (authenticator: nginx). The Certificate Authority reported these problems:

Domain: notgerardo.com

Type: unauthorized

Detail: Invalid response from http://notgerardo.com/.well-known/acme-challenge/pZv57nGV2JjCwgYUPCxTH23Vr7MDTLuEn8cp3xyVmFk [2a01:7e01::f03c:92ff:fea7:ce4d]: "<html>\r\n<head><title>404 Not Found</title></head>\r\n<body>\r\n<center><h1>404 Not Found</h1></center>\r\n<hr><center>nginx/1.17.10 (U"

Domain: www.notgerardo.com

Type: unauthorized

Detail: Invalid response from http://www.notgerardo.com/.well-known/acme-challenge/MAyZ4PfRTJTUSdUFNRCyslZQPZKKTJQEHpIrdWIZJE8 [2a01:7e01::f03c:92ff:fea7:ce4d]: "<html>\r\n<head><title>404 Not Found</title></head>\r\n<body>\r\n<center><h1>404 Not Found</h1></center>\r\n<hr><center>nginx/1.17.10 (U"

Hint: The Certificate Authority failed to verify the temporary nginx configuration changes made by Certbot. Ensure the listed domains point to this nginx server and that it is accessible from the internet.

Failed to renew certificate notgerardo.com with error: Some challenges have failed.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

All simulated renewals failed. The following certificates could not be renewed:

/etc/letsencrypt/live/notgerardo.com-0001/fullchain.pem (failure)

/etc/letsencrypt/live/notgerardo.com/fullchain.pem (failure)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

2 renew failure(s), 0 parse failure(s)

Ask for help or search for solutions at https://community.letsencrypt.org. See the logfile /var/log/letsencrypt/letsencrypt.log or re-run Certbot with -v for more details.

My web server is (include version):
nginx version: nginx/1.17.10 (Ubuntu)

The operating system my web server runs on is (include version):
Ubuntu 20.04 LTS

My hosting provider, if applicable, is:
Linode

I can login to a root shell on my machine (yes or no, or I don't know):
yes

I'm using a control panel to manage my site (no, or provide the name and version of the control panel):
no

The version of my client is (e.g. output of certbot --version or certbot-auto --version if you're using Certbot):
certbot 1.18.0

I have read other multiple posts and indeed already semi-understand that port 80 is already used by nginx and therefore cant be used by certbot. However, I tried running with pre and post hooks to stop it and it didnt succeed. Right now my current certificate installation is without hooks. Any ideas would be greatly appreciated. Apologies because I know there's plenty of other posts about the same issue just couldnt solve mine still.

1 Like

Welcome to the Let's Encrypt Community :slightly_smiling_face:

There are several problems here with the first being that you used the standalone authenticator instead of the nginx authenticator in the first place. The second problem might be that the IPv6 address being used doesn't point to the correct server block. There appear to be unnecessary certificate lineages in certbot as well.

What are the outputs of:

sudo nginx -T
sudo ls -lRa /etc/nginx
sudo ls -lRa /etc/letsencrypt
sudo certbot certificates

Please put 3 backticks above and below each output, like this:

```
output
```

1 Like

Cut to the chase...

Name:      notgerardo.com
Addresses: 2a01:7e01::f03c:92ff:fea7:ce4d
           172.104.139.114

curl -Iki6 notgerardo.com
HTTP/1.1 403 Forbidden

curl -Iki4 notgerardo.com
HTTP/1.1 301 Moved Permanently
Location: https://notgerardo.com/

The site fails via IPv6.

1 Like

Hi griffin, thanks for your response :slight_smile: And apologies if some things I say don't make a lot of sense. It's my first time doing this. Thanks in advanced and apologies for the lengthy output.

Small question... you mention I use the standalone authenticator. I think that is weird because I followed the steps listed here Certbot - Ubuntufocal Nginx and I did use sudo certbot --nginx. This is the nginx one right?

Second, I will investigate my ipv6. I for sure did not check this.

The outputs:

$ sudo nginx -T
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
# configuration file /etc/nginx/nginx.conf:
user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
	worker_connections 768;
	# multi_accept on;
}

http {

	##
	# Basic Settings
	##

	sendfile on;
	tcp_nopush on;
	tcp_nodelay on;
	keepalive_timeout 65;
	types_hash_max_size 2048;
	# server_tokens off;

	# server_names_hash_bucket_size 64;
	# server_name_in_redirect off;

	include /etc/nginx/mime.types;
	default_type application/octet-stream;

	##
	# SSL Settings
	##

	ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
	ssl_prefer_server_ciphers on;

	##
	# Logging Settings
	##

	access_log /var/log/nginx/access.log;
	error_log /var/log/nginx/error.log;

	##
	# Gzip Settings
	##

	gzip on;

	# gzip_vary on;
	# gzip_proxied any;
	# gzip_comp_level 6;
	# gzip_buffers 16 8k;
	# gzip_http_version 1.1;
	# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

	##
	# Virtual Host Configs
	##

	include /etc/nginx/conf.d/*.conf;
	include /etc/nginx/sites-enabled/*;
}


#mail {
#	# See sample authentication script at:
#	# http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
# 
#	# auth_http localhost/auth.php;
#	# pop3_capabilities "TOP" "USER";
#	# imap_capabilities "IMAP4rev1" "UIDPLUS";
# 
#	server {
#		listen     localhost:110;
#		protocol   pop3;
#		proxy      on;
#	}
# 
#	server {
#		listen     localhost:143;
#		protocol   imap;
#		proxy      on;
#	}
#}

# configuration file /etc/nginx/modules-enabled/50-mod-http-image-filter.conf:
load_module modules/ngx_http_image_filter_module.so;

# configuration file /etc/nginx/modules-enabled/50-mod-http-xslt-filter.conf:
load_module modules/ngx_http_xslt_filter_module.so;

# configuration file /etc/nginx/modules-enabled/50-mod-mail.conf:
load_module modules/ngx_mail_module.so;

# configuration file /etc/nginx/modules-enabled/50-mod-stream.conf:
load_module modules/ngx_stream_module.so;

# configuration file /etc/nginx/mime.types:

types {
    text/html                             html htm shtml;
    text/css                              css;
    text/xml                              xml;
    image/gif                             gif;
    image/jpeg                            jpeg jpg;
    application/javascript                js;
    application/atom+xml                  atom;
    application/rss+xml                   rss;

    text/mathml                           mml;
    text/plain                            txt;
    text/vnd.sun.j2me.app-descriptor      jad;
    text/vnd.wap.wml                      wml;
    text/x-component                      htc;

    image/png                             png;
    image/tiff                            tif tiff;
    image/vnd.wap.wbmp                    wbmp;
    image/x-icon                          ico;
    image/x-jng                           jng;
    image/x-ms-bmp                        bmp;
    image/svg+xml                         svg svgz;
    image/webp                            webp;

    application/font-woff                 woff;
    application/java-archive              jar war ear;
    application/json                      json;
    application/mac-binhex40              hqx;
    application/msword                    doc;
    application/pdf                       pdf;
    application/postscript                ps eps ai;
    application/rtf                       rtf;
    application/vnd.apple.mpegurl         m3u8;
    application/vnd.ms-excel              xls;
    application/vnd.ms-fontobject         eot;
    application/vnd.ms-powerpoint         ppt;
    application/vnd.wap.wmlc              wmlc;
    application/vnd.google-earth.kml+xml  kml;
    application/vnd.google-earth.kmz      kmz;
    application/x-7z-compressed           7z;
    application/x-cocoa                   cco;
    application/x-java-archive-diff       jardiff;
    application/x-java-jnlp-file          jnlp;
    application/x-makeself                run;
    application/x-perl                    pl pm;
    application/x-pilot                   prc pdb;
    application/x-rar-compressed          rar;
    application/x-redhat-package-manager  rpm;
    application/x-sea                     sea;
    application/x-shockwave-flash         swf;
    application/x-stuffit                 sit;
    application/x-tcl                     tcl tk;
    application/x-x509-ca-cert            der pem crt;
    application/x-xpinstall               xpi;
    application/xhtml+xml                 xhtml;
    application/xspf+xml                  xspf;
    application/zip                       zip;

    application/octet-stream              bin exe dll;
    application/octet-stream              deb;
    application/octet-stream              dmg;
    application/octet-stream              iso img;
    application/octet-stream              msi msp msm;

    application/vnd.openxmlformats-officedocument.wordprocessingml.document    docx;
    application/vnd.openxmlformats-officedocument.spreadsheetml.sheet          xlsx;
    application/vnd.openxmlformats-officedocument.presentationml.presentation  pptx;

    audio/midi                            mid midi kar;
    audio/mpeg                            mp3;
    audio/ogg                             ogg;
    audio/x-m4a                           m4a;
    audio/x-realaudio                     ra;

    video/3gpp                            3gpp 3gp;
    video/mp2t                            ts;
    video/mp4                             mp4;
    video/mpeg                            mpeg mpg;
    video/quicktime                       mov;
    video/webm                            webm;
    video/x-flv                           flv;
    video/x-m4v                           m4v;
    video/x-mng                           mng;
    video/x-ms-asf                        asx asf;
    video/x-ms-wmv                        wmv;
    video/x-msvideo                       avi;
}

# configuration file /etc/nginx/sites-enabled/default.txt:
##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# https://www.nginx.com/resources/wiki/start/
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/
# https://wiki.debian.org/Nginx/DirectoryStructure
#
# In most cases, administrators will remove this file from sites-enabled/ and
# leave it as reference inside of sites-available where it will continue to be
# updated by the nginx packaging team.
#
# This file will automatically load configuration files provided by other
# applications, such as Drupal or Wordpress. These applications will be made
# available underneath a path with that package name, such as /drupal8.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##

# Default server configuration
#
server {
	listen 80 default_server;
	listen [::]:80 default_server;

	# SSL configuration
	#
	# listen 443 ssl default_server;
	# listen [::]:443 ssl default_server;
	#
	# Note: You should disable gzip for SSL traffic.
	# See: https://bugs.debian.org/773332
	#
	# Read up on ssl_ciphers to ensure a secure configuration.
	# See: https://bugs.debian.org/765782
	#
	# Self signed certs generated by the ssl-cert package
	# Don't use them in a production server!
	#
	# include snippets/snakeoil.conf;

	root /var/www/html;

	# Add index.php to the list if you are using PHP
	index index.html index.htm index.nginx-debian.html;

	server_name _;

	location / {
		# First attempt to serve request as file, then
		# as directory, then fall back to displaying a 404.
		try_files $uri $uri/ =404;
	}

	# pass PHP scripts to FastCGI server
	#
	#location ~ \.php$ {
	#	include snippets/fastcgi-php.conf;
	#
	#	# With php-fpm (or other unix sockets):
	#	fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
	#	# With php-cgi (or other tcp sockets):
	#	fastcgi_pass 127.0.0.1:9000;
	#}

	# deny access to .htaccess files, if Apache's document root
	# concurs with nginx's one
	#
	#location ~ /\.ht {
	#	deny all;
	#}
}


# Virtual Host configuration for example.com
#
# You can move that to a different file under sites-available/ and symlink that
# to sites-enabled/ to enable it.
#
#server {
#	listen 80;
#	listen [::]:80;
#
#	server_name example.com;
#
#	root /var/www/example.com;
#	index index.html;
#
#	location / {
#		try_files $uri $uri/ =404;
#	}
#}

# configuration file /etc/nginx/sites-enabled/mysite.conf:
server {
	server_name notgerardo.com www.notgerardo.com;
	
	location = /favicon.ico { access_log off; log_not_found off; }
	location /static/ {
		root /home/gerardo/not_gerardo/mysite;
	}

	location / {
		include proxy_params;
		proxy_pass http://unix:/home/gerardo/not_gerardo/mysite/mysite.sock;
	}


    listen 443 ssl; # managed by Certbot
    ssl_certificate /etc/letsencrypt/live/notgerardo.com/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/notgerardo.com/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot






}
server {
    if ($host = www.notgerardo.com) {
        return 301 https://$host$request_uri;
    } # managed by Certbot


    if ($host = notgerardo.com) {
        return 301 https://$host$request_uri;
    } # managed by Certbot


	listen 80;
	server_name notgerardo.com www.notgerardo.com;
    return 404; # managed by Certbot




}
# configuration file /etc/nginx/proxy_params:
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;

# configuration file /etc/letsencrypt/options-ssl-nginx.conf:
# This file contains important security parameters. If you modify this file
# manually, Certbot will be unable to automatically provide future security
# updates. Instead, Certbot will print and log an error message with a path to
# the up-to-date file that you will need to refer to when manually updating
# this file.

ssl_session_cache shared:le_nginx_SSL:10m;
ssl_session_timeout 1440m;
ssl_session_tickets off;

ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers off;

ssl_ciphers "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384";

$ sudo ls -lRa /etc/nginx
/etc/nginx:
total 72
drwxr-xr-x   8 root root 4096 Sep  7 17:58 .
drwxr-xr-x 102 root root 4096 Aug 28 17:26 ..
drwxr-xr-x   2 root root 4096 Apr 14  2020 conf.d
-rw-r--r--   1 root root 1077 Feb  4  2019 fastcgi.conf
-rw-r--r--   1 root root 1007 Feb  4  2019 fastcgi_params
-rw-r--r--   1 root root 2837 Feb  4  2019 koi-utf
-rw-r--r--   1 root root 2223 Feb  4  2019 koi-win
-rw-r--r--   1 root root 3957 Feb  4  2019 mime.types
drwxr-xr-x   2 root root 4096 Apr 14  2020 modules-available
drwxr-xr-x   2 root root 4096 May 20  2020 modules-enabled
-rw-r--r--   1 root root 1490 Feb  4  2019 nginx.conf
-rw-r--r--   1 root root  180 Feb  4  2019 proxy_params
-rw-r--r--   1 root root  636 Feb  4  2019 scgi_params
drwxr-xr-x   2 root root 4096 Sep  7 16:08 sites-available
drwxr-xr-x   2 root root 4096 Sep  7 15:53 sites-enabled
drwxr-xr-x   2 root root 4096 May 20  2020 snippets
-rw-r--r--   1 root root  664 Feb  4  2019 uwsgi_params
-rw-r--r--   1 root root 3071 Feb  4  2019 win-utf

/etc/nginx/conf.d:
total 8
drwxr-xr-x 2 root root 4096 Apr 14  2020 .
drwxr-xr-x 8 root root 4096 Sep  7 17:58 ..

/etc/nginx/modules-available:
total 8
drwxr-xr-x 2 root root 4096 Apr 14  2020 .
drwxr-xr-x 8 root root 4096 Sep  7 17:58 ..

/etc/nginx/modules-enabled:
total 16
drwxr-xr-x 2 root root 4096 May 20  2020 .
drwxr-xr-x 8 root root 4096 Sep  7 17:58 ..
lrwxrwxrwx 1 root root   61 May 20  2020 50-mod-http-image-filter.conf -> /usr/share/nginx/modules-available/mod-http-image-filter.conf
lrwxrwxrwx 1 root root   60 May 20  2020 50-mod-http-xslt-filter.conf -> /usr/share/nginx/modules-available/mod-http-xslt-filter.conf
lrwxrwxrwx 1 root root   48 May 20  2020 50-mod-mail.conf -> /usr/share/nginx/modules-available/mod-mail.conf
lrwxrwxrwx 1 root root   50 May 20  2020 50-mod-stream.conf -> /usr/share/nginx/modules-available/mod-stream.conf

/etc/nginx/sites-available:
total 20
drwxr-xr-x 2 root root 4096 Sep  7 16:08 .
drwxr-xr-x 8 root root 4096 Sep  7 17:58 ..
-rw-r--r-- 1 root root 2416 Mar 26  2020 default
-rw-r--r-- 1 root root 1019 Sep  7 17:56 mysite.conf
-rw-r--r-- 1 root root 2149 Sep  7 15:37 mysite_nginx.conf.backup

/etc/nginx/sites-enabled:
total 8
drwxr-xr-x 2 root root 4096 Sep  7 15:53 .
drwxr-xr-x 8 root root 4096 Sep  7 17:58 ..
lrwxrwxrwx 1 root root   34 May 20  2020 default.txt -> /etc/nginx/sites-available/default
lrwxrwxrwx 1 root root   38 Sep  7 15:53 mysite.conf -> /etc/nginx/sites-available/mysite.conf

/etc/nginx/snippets:
total 16
drwxr-xr-x 2 root root 4096 May 20  2020 .
drwxr-xr-x 8 root root 4096 Sep  7 17:58 ..
-rw-r--r-- 1 root root  423 Feb  4  2019 fastcgi-php.conf
-rw-r--r-- 1 root root  217 Feb  4  2019 snakeoil.conf

2 Likes

Next set of outputs:

$ sudo ls -lRa /etc/letsencrypt
/etc/letsencrypt:
total 92
drwxr-xr-x   9 root root  4096 Sep  8 09:22 .
drwxr-xr-x 102 root root  4096 Aug 28 17:26 ..
-rw-r--r--   1 root root    64 Sep  7 16:18 .updated-options-ssl-nginx-conf-digest.txt
-rw-r--r--   1 root root    64 May 22  2020 .updated-ssl-dhparams-pem-digest.txt
drwxr-xr-x   4 root root  4096 May 24  2020 accounts
drwx------   4 root root  4096 Feb 15  2021 archive
-rw-r--r--   1 root root   121 May 26  2018 cli.ini
drwxr-xr-x   2 root root 20480 Sep  7 17:56 csr
drwx------   2 root root 20480 Sep  7 17:56 keys
drwx------   4 root root  4096 Feb 15  2021 live
-rw-r--r--   1 root root   721 Sep  7 16:18 options-ssl-nginx.conf
drwxr-xr-x   2 root root  4096 Sep  7 17:56 renewal
drwxr-xr-x   5 root root  4096 May 22  2020 renewal-hooks
-rw-r--r--   1 root root   424 May 22  2020 ssl-dhparams.pem

/etc/letsencrypt/accounts:
total 16
drwxr-xr-x 4 root root 4096 May 24  2020 .
drwxr-xr-x 9 root root 4096 Sep  8 09:22 ..
drwxr-xr-x 3 root root 4096 May 24  2020 acme-staging-v02.api.letsencrypt.org
drwxr-xr-x 3 root root 4096 May 22  2020 acme-v02.api.letsencrypt.org

/etc/letsencrypt/accounts/acme-staging-v02.api.letsencrypt.org:
total 12
drwxr-xr-x 3 root root 4096 May 24  2020 .
drwxr-xr-x 4 root root 4096 May 24  2020 ..
drwx------ 3 root root 4096 May 24  2020 directory

/etc/letsencrypt/accounts/acme-staging-v02.api.letsencrypt.org/directory:
total 12
drwx------ 3 root root 4096 May 24  2020 .
drwxr-xr-x 3 root root 4096 May 24  2020 ..
drwx------ 2 root root 4096 May 24  2020 ed2ec8c6422f004326c7697788ed50ed

/etc/letsencrypt/accounts/acme-staging-v02.api.letsencrypt.org/directory/ed2ec8c6422f004326c7697788ed50ed:
total 20
drwx------ 2 root root 4096 May 24  2020 .
drwx------ 3 root root 4096 May 24  2020 ..
-rw-r--r-- 1 root root   70 May 24  2020 meta.json
-r-------- 1 root root 1632 May 24  2020 private_key.json
-rw-r--r-- 1 root root   86 May 24  2020 regr.json

/etc/letsencrypt/accounts/acme-v02.api.letsencrypt.org:
total 12
drwxr-xr-x 3 root root 4096 May 22  2020 .
drwxr-xr-x 4 root root 4096 May 24  2020 ..
drwx------ 3 root root 4096 May 22  2020 directory

/etc/letsencrypt/accounts/acme-v02.api.letsencrypt.org/directory:
total 12
drwx------ 3 root root 4096 May 22  2020 .
drwxr-xr-x 3 root root 4096 May 22  2020 ..
drwx------ 2 root root 4096 May 22  2020 605a2529f5dd9f64f05470b5f398d569

/etc/letsencrypt/accounts/acme-v02.api.letsencrypt.org/directory/605a2529f5dd9f64f05470b5f398d569:
total 20
drwx------ 2 root root 4096 May 22  2020 .
drwx------ 3 root root 4096 May 22  2020 ..
-rw-r--r-- 1 root root   70 May 22  2020 meta.json
-r-------- 1 root root 1632 May 22  2020 private_key.json
-rw-r--r-- 1 root root   78 May 22  2020 regr.json

/etc/letsencrypt/archive:
total 16
drwx------ 4 root root 4096 Feb 15  2021 .
drwxr-xr-x 9 root root 4096 Sep  8 09:22 ..
drwxr-xr-x 2 root root 4096 Sep  7 17:56 notgerardo.com
drwxr-xr-x 2 root root 4096 Aug 11 12:22 notgerardo.com-0001

/etc/letsencrypt/archive/notgerardo.com:
total 188
drwxr-xr-x 2 root root 4096 Sep  7 17:56 .
drwx------ 4 root root 4096 Feb 15  2021 ..
-rw-r--r-- 1 root root 1935 May 24  2020 cert1.pem
-rw-r--r-- 1 root root 1866 Sep  7 17:56 cert10.pem
-rw-r--r-- 1 root root 1935 Jul 23  2020 cert2.pem
-rw-r--r-- 1 root root 1935 Sep 22  2020 cert3.pem
-rw-r--r-- 1 root root 1870 Feb 16  2021 cert4.pem
-rw-r--r-- 1 root root 1866 Mar  7  2021 cert5.pem
-rw-r--r-- 1 root root 1866 Jun 11 17:06 cert6.pem
-rw-r--r-- 1 root root 1870 Aug 11 09:04 cert7.pem
-rw-r--r-- 1 root root 1866 Sep  7 16:19 cert8.pem
-rw-r--r-- 1 root root 1866 Sep  7 17:25 cert9.pem
-rw-r--r-- 1 root root 1647 May 24  2020 chain1.pem
-rw-r--r-- 1 root root 3749 Sep  7 17:56 chain10.pem
-rw-r--r-- 1 root root 1647 Jul 23  2020 chain2.pem
-rw-r--r-- 1 root root 1647 Sep 22  2020 chain3.pem
-rw-r--r-- 1 root root 1586 Feb 16  2021 chain4.pem
-rw-r--r-- 1 root root 1586 Mar  7  2021 chain5.pem
-rw-r--r-- 1 root root 3750 Jun 11 17:06 chain6.pem
-rw-r--r-- 1 root root 3750 Aug 11 09:04 chain7.pem
-rw-r--r-- 1 root root 3749 Sep  7 16:19 chain8.pem
-rw-r--r-- 1 root root 3749 Sep  7 17:25 chain9.pem
-rw-r--r-- 1 root root 3582 May 24  2020 fullchain1.pem
-rw-r--r-- 1 root root 5615 Sep  7 17:56 fullchain10.pem
-rw-r--r-- 1 root root 3582 Jul 23  2020 fullchain2.pem
-rw-r--r-- 1 root root 3582 Sep 22  2020 fullchain3.pem
-rw-r--r-- 1 root root 3456 Feb 16  2021 fullchain4.pem
-rw-r--r-- 1 root root 3452 Mar  7  2021 fullchain5.pem
-rw-r--r-- 1 root root 5616 Jun 11 17:06 fullchain6.pem
-rw-r--r-- 1 root root 5620 Aug 11 09:04 fullchain7.pem
-rw-r--r-- 1 root root 5615 Sep  7 16:19 fullchain8.pem
-rw-r--r-- 1 root root 5615 Sep  7 17:25 fullchain9.pem
-rw------- 1 root root 1708 May 24  2020 privkey1.pem
-rw------- 1 root root 1704 Sep  7 17:56 privkey10.pem
-rw------- 1 root root 1704 Jul 23  2020 privkey2.pem
-rw------- 1 root root 1700 Sep 22  2020 privkey3.pem
-rw------- 1 root root 1708 Feb 16  2021 privkey4.pem
-rw------- 1 root root 1704 Mar  7  2021 privkey5.pem
-rw------- 1 root root 1704 Jun 11 17:06 privkey6.pem
-rw------- 1 root root 1704 Aug 11 09:04 privkey7.pem
-rw------- 1 root root 1704 Sep  7 16:19 privkey8.pem
-rw------- 1 root root 1704 Sep  7 17:25 privkey9.pem

/etc/letsencrypt/archive/notgerardo.com-0001:
total 80
drwxr-xr-x 2 root root 4096 Aug 11 12:22 .
drwx------ 4 root root 4096 Feb 15  2021 ..
-rw-r--r-- 1 root root 1838 Feb 15  2021 cert1.pem
-rw-r--r-- 1 root root 1842 Mar  7  2021 cert2.pem
-rw-r--r-- 1 root root 1842 Jun 12 11:19 cert3.pem
-rw-r--r-- 1 root root 1838 Aug 11 12:22 cert4.pem
-rw-r--r-- 1 root root 1586 Feb 15  2021 chain1.pem
-rw-r--r-- 1 root root 1586 Mar  7  2021 chain2.pem
-rw-r--r-- 1 root root 3750 Jun 12 11:19 chain3.pem
-rw-r--r-- 1 root root 3750 Aug 11 12:22 chain4.pem
-rw-r--r-- 1 root root 3424 Feb 15  2021 fullchain1.pem
-rw-r--r-- 1 root root 3428 Mar  7  2021 fullchain2.pem
-rw-r--r-- 1 root root 5592 Jun 12 11:19 fullchain3.pem
-rw-r--r-- 1 root root 5588 Aug 11 12:22 fullchain4.pem
-rw------- 1 root root 1704 Feb 15  2021 privkey1.pem
-rw------- 1 root root 1708 Mar  7  2021 privkey2.pem
-rw------- 1 root root 1704 Jun 12 11:19 privkey3.pem
-rw------- 1 root root 1704 Aug 11 12:22 privkey4.pem

/etc/letsencrypt/csr:
total 1440
drwxr-xr-x 2 root root 20480 Sep  7 17:56 .
drwxr-xr-x 9 root root  4096 Sep  8 09:22 ..
-rw-r--r-- 1 root root   952 May 22  2020 0000_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 22  2020 0001_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 22  2020 0002_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 22  2020 0003_csr-certbot.pem
-rw-r--r-- 1 root root   928 May 22  2020 0004_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 22  2020 0005_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 22  2020 0006_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 24  2020 0007_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 24  2020 0008_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 24  2020 0009_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 24  2020 0010_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 24  2020 0011_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 24  2020 0012_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jul 23  2020 0013_csr-certbot.pem
-rw-r--r-- 1 root root   952 Sep 22  2020 0014_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 21  2020 0015_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 21  2020 0016_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 22  2020 0017_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 22  2020 0018_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 23  2020 0019_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 23  2020 0020_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 24  2020 0021_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 24  2020 0022_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 25  2020 0023_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 25  2020 0024_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 26  2020 0025_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 26  2020 0026_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 27  2020 0027_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 27  2020 0028_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 28  2020 0029_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 28  2020 0030_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 29  2020 0031_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 29  2020 0032_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 30  2020 0033_csr-certbot.pem
-rw-r--r-- 1 root root   952 Nov 30  2020 0034_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  1  2020 0035_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  1  2020 0036_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  2  2020 0037_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  2  2020 0038_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  3  2020 0039_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  3  2020 0040_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  4  2020 0041_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  4  2020 0042_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  5  2020 0043_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  5  2020 0044_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  6  2020 0045_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  6  2020 0046_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  7  2020 0047_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  7  2020 0048_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  8  2020 0049_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  8  2020 0050_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  9  2020 0051_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec  9  2020 0052_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 10  2020 0053_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 10  2020 0054_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 11  2020 0055_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 11  2020 0056_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 12  2020 0057_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 12  2020 0058_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 13  2020 0059_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 13  2020 0060_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 14  2020 0061_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 14  2020 0062_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 15  2020 0063_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 15  2020 0064_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 16  2020 0065_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 16  2020 0066_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 17  2020 0067_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 17  2020 0068_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 18  2020 0069_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 18  2020 0070_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 19  2020 0071_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 19  2020 0072_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 20  2020 0073_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 20  2020 0074_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 21  2020 0075_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 21  2020 0076_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 22  2020 0077_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 22  2020 0078_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 23  2020 0079_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 23  2020 0080_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 24  2020 0081_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 24  2020 0082_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 25  2020 0083_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 25  2020 0084_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 26  2020 0085_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 26  2020 0086_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 27  2020 0087_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 27  2020 0088_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 28  2020 0089_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 28  2020 0090_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 29  2020 0091_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 29  2020 0092_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 30  2020 0093_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 30  2020 0094_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 31  2020 0095_csr-certbot.pem
-rw-r--r-- 1 root root   952 Dec 31  2020 0096_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  1  2021 0097_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  1  2021 0098_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  2  2021 0099_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  2  2021 0100_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  3  2021 0101_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  3  2021 0102_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  4  2021 0103_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  4  2021 0104_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  5  2021 0105_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  5  2021 0106_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  6  2021 0107_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  6  2021 0108_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  7  2021 0109_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  7  2021 0110_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  8  2021 0111_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  8  2021 0112_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  9  2021 0113_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan  9  2021 0114_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 10  2021 0115_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 10  2021 0116_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 11  2021 0117_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 11  2021 0118_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 12  2021 0119_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 12  2021 0120_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 13  2021 0121_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 13  2021 0122_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 14  2021 0123_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 14  2021 0124_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 15  2021 0125_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 15  2021 0126_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 16  2021 0127_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 16  2021 0128_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 17  2021 0129_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 17  2021 0130_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 18  2021 0131_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 18  2021 0132_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 19  2021 0133_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 19  2021 0134_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 20  2021 0135_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 20  2021 0136_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 21  2021 0137_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 21  2021 0138_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 22  2021 0139_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 22  2021 0140_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 23  2021 0141_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 23  2021 0142_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 24  2021 0143_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 24  2021 0144_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 25  2021 0145_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 25  2021 0146_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 26  2021 0147_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 26  2021 0148_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 27  2021 0149_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 27  2021 0150_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 28  2021 0151_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 28  2021 0152_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 29  2021 0153_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 29  2021 0154_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 30  2021 0155_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 30  2021 0156_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 31  2021 0157_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jan 31  2021 0158_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  1  2021 0159_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  1  2021 0160_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  2  2021 0161_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  2  2021 0162_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  3  2021 0163_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  3  2021 0164_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  4  2021 0165_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  4  2021 0166_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  5  2021 0167_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  5  2021 0168_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  6  2021 0169_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  6  2021 0170_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  7  2021 0171_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  7  2021 0172_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  8  2021 0173_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  8  2021 0174_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  9  2021 0175_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb  9  2021 0176_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 10  2021 0177_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 10  2021 0178_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 11  2021 0179_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 11  2021 0180_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 12  2021 0181_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 12  2021 0182_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 13  2021 0183_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 13  2021 0184_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 14  2021 0185_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 14  2021 0186_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 15  2021 0187_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 15  2021 0188_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 15  2021 0189_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 15  2021 0190_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 15  2021 0191_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 15  2021 0192_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 15  2021 0193_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 15  2021 0194_csr-certbot.pem
-rw-r--r-- 1 root root   924 Feb 15  2021 0195_csr-certbot.pem
-rw-r--r-- 1 root root   924 Feb 15  2021 0196_csr-certbot.pem
-rw-r--r-- 1 root root   924 Feb 15  2021 0197_csr-certbot.pem
-rw-r--r-- 1 root root   924 Feb 15  2021 0198_csr-certbot.pem
-rw-r--r-- 1 root root   952 Feb 16  2021 0199_csr-certbot.pem
-rw-r--r-- 1 root root   924 Mar  7  2021 0200_csr-certbot.pem
-rw-r--r-- 1 root root   952 Mar  7  2021 0201_csr-certbot.pem
-rw-r--r-- 1 root root   924 May  6 16:20 0202_csr-certbot.pem
-rw-r--r-- 1 root root   952 May  6 16:20 0203_csr-certbot.pem
-rw-r--r-- 1 root root   924 May  7 08:40 0204_csr-certbot.pem
-rw-r--r-- 1 root root   952 May  7 08:40 0205_csr-certbot.pem
-rw-r--r-- 1 root root   924 May  7 12:53 0206_csr-certbot.pem
-rw-r--r-- 1 root root   952 May  7 12:53 0207_csr-certbot.pem
-rw-r--r-- 1 root root   924 May  8 08:03 0208_csr-certbot.pem
-rw-r--r-- 1 root root   952 May  8 08:03 0209_csr-certbot.pem
-rw-r--r-- 1 root root   924 May  8 21:49 0210_csr-certbot.pem
-rw-r--r-- 1 root root   952 May  8 21:49 0211_csr-certbot.pem
-rw-r--r-- 1 root root   924 May  9 09:00 0212_csr-certbot.pem
-rw-r--r-- 1 root root   952 May  9 09:00 0213_csr-certbot.pem
-rw-r--r-- 1 root root   924 May  9 15:49 0214_csr-certbot.pem
-rw-r--r-- 1 root root   952 May  9 15:49 0215_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 10 11:35 0216_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 10 11:35 0217_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 10 17:48 0218_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 10 17:48 0219_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 11 01:16 0220_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 11 01:16 0221_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 11 16:46 0222_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 11 16:46 0223_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 12 02:52 0224_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 12 02:52 0225_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 12 23:51 0226_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 12 23:51 0227_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 13 11:12 0228_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 13 11:12 0229_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 13 22:31 0230_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 13 22:31 0231_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 14 07:07 0232_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 14 07:07 0233_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 14 13:22 0234_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 14 13:23 0235_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 15 03:11 0236_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 15 03:11 0237_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 15 20:14 0238_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 15 20:14 0239_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 16 06:51 0240_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 16 06:51 0241_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 16 19:55 0242_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 16 19:55 0243_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 17 07:24 0244_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 17 07:24 0245_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 17 15:34 0246_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 17 15:34 0247_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 18 07:31 0248_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 18 07:31 0249_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 18 22:12 0250_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 18 22:12 0251_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 19 08:42 0252_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 19 08:42 0253_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 19 12:31 0254_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 19 12:31 0255_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 20 01:36 0256_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 20 01:36 0257_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 20 16:55 0258_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 20 16:55 0259_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 21 06:51 0260_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 21 06:51 0261_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 21 22:17 0262_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 21 22:17 0263_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 22 08:26 0264_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 22 08:26 0265_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 22 12:57 0266_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 22 12:57 0267_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 23 01:50 0268_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 23 01:50 0269_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 23 19:49 0270_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 23 19:49 0271_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 24 08:36 0272_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 24 08:36 0273_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 24 20:42 0274_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 24 20:42 0275_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 25 00:23 0276_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 25 00:23 0277_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 25 22:23 0278_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 25 22:23 0279_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 26 06:54 0280_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 26 06:54 0281_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 26 14:02 0282_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 26 14:02 0283_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 27 08:46 0284_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 27 08:46 0285_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 27 23:39 0286_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 27 23:39 0287_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 28 06:41 0288_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 28 06:41 0289_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 28 21:36 0290_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 28 21:36 0291_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 29 02:25 0292_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 29 02:25 0293_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 29 22:54 0294_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 29 22:54 0295_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 30 06:33 0296_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 30 06:33 0297_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 30 14:03 0298_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 30 14:03 0299_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 31 09:29 0300_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 31 09:29 0301_csr-certbot.pem
-rw-r--r-- 1 root root   924 May 31 18:59 0302_csr-certbot.pem
-rw-r--r-- 1 root root   952 May 31 18:59 0303_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  1 01:48 0304_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  1 01:48 0305_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  1 22:20 0306_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  1 22:20 0307_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  2 07:26 0308_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  2 07:26 0309_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  2 20:54 0310_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  2 20:54 0311_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  3 03:59 0312_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  3 03:59 0313_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  3 15:16 0314_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  3 15:16 0315_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  4 07:29 0316_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  4 07:29 0317_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  4 18:50 0318_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  4 18:50 0319_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  5 12:01 0320_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  5 12:01 0321_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  5 13:43 0322_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  5 13:43 0323_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  6 00:19 0324_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  6 00:19 0325_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  6 15:05 0326_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  6 15:05 0327_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  7 08:11 0328_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  7 08:11 0329_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  7 16:19 0330_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  7 16:19 0331_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  8 05:28 0332_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  8 05:28 0333_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  8 20:06 0334_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  8 20:06 0335_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  9 09:12 0336_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  9 09:12 0337_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun  9 22:19 0338_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun  9 22:19 0339_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun 10 09:44 0340_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun 10 09:44 0341_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun 10 15:12 0342_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun 10 15:12 0343_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun 11 04:00 0344_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun 11 04:00 0345_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun 11 17:06 0346_csr-certbot.pem
-rw-r--r-- 1 root root   952 Jun 11 17:06 0347_csr-certbot.pem
-rw-r--r-- 1 root root   924 Jun 12 11:19 0348_csr-certbot.pem
-rw-r--r-- 1 root root   952 Aug 11 09:04 0349_csr-certbot.pem
-rw-r--r-- 1 root root   924 Aug 11 12:22 0350_csr-certbot.pem
-rw-r--r-- 1 root root   952 Sep  7 16:19 0351_csr-certbot.pem
-rw-r--r-- 1 root root   952 Sep  7 17:24 0352_csr-certbot.pem
-rw-r--r-- 1 root root   952 Sep  7 17:56 0353_csr-certbot.pem

/etc/letsencrypt/keys:
total 1444
drwx------ 2 root root 20480 Sep  7 17:56 .
drwxr-xr-x 9 root root  4096 Sep  8 09:22 ..
-rw------- 1 root root  1704 May 22  2020 0000_key-certbot.pem
-rw------- 1 root root  1704 May 22  2020 0001_key-certbot.pem
-rw------- 1 root root  1704 May 22  2020 0002_key-certbot.pem
-rw------- 1 root root  1704 May 22  2020 0003_key-certbot.pem
-rw------- 1 root root  1704 May 22  2020 0004_key-certbot.pem
-rw------- 1 root root  1704 May 22  2020 0005_key-certbot.pem
-rw------- 1 root root  1704 May 22  2020 0006_key-certbot.pem
-rw------- 1 root root  1704 May 24  2020 0007_key-certbot.pem
-rw------- 1 root root  1704 May 24  2020 0008_key-certbot.pem
-rw------- 1 root root  1704 May 24  2020 0009_key-certbot.pem
-rw------- 1 root root  1704 May 24  2020 0010_key-certbot.pem
-rw------- 1 root root  1704 May 24  2020 0011_key-certbot.pem
-rw------- 1 root root  1708 May 24  2020 0012_key-certbot.pem
-rw------- 1 root root  1704 Jul 23  2020 0013_key-certbot.pem
-rw------- 1 root root  1700 Sep 22  2020 0014_key-certbot.pem
-rw------- 1 root root  1704 Nov 21  2020 0015_key-certbot.pem
-rw------- 1 root root  1704 Nov 21  2020 0016_key-certbot.pem
-rw------- 1 root root  1704 Nov 22  2020 0017_key-certbot.pem
-rw------- 1 root root  1708 Nov 22  2020 0018_key-certbot.pem
-rw------- 1 root root  1704 Nov 23  2020 0019_key-certbot.pem
-rw------- 1 root root  1708 Nov 23  2020 0020_key-certbot.pem
-rw------- 1 root root  1704 Nov 24  2020 0021_key-certbot.pem
-rw------- 1 root root  1704 Nov 24  2020 0022_key-certbot.pem
-rw------- 1 root root  1704 Nov 25  2020 0023_key-certbot.pem
-rw------- 1 root root  1704 Nov 25  2020 0024_key-certbot.pem
-rw------- 1 root root  1708 Nov 26  2020 0025_key-certbot.pem
-rw------- 1 root root  1704 Nov 26  2020 0026_key-certbot.pem
-rw------- 1 root root  1704 Nov 27  2020 0027_key-certbot.pem
-rw------- 1 root root  1704 Nov 27  2020 0028_key-certbot.pem
-rw------- 1 root root  1704 Nov 28  2020 0029_key-certbot.pem
-rw------- 1 root root  1708 Nov 28  2020 0030_key-certbot.pem
-rw------- 1 root root  1704 Nov 29  2020 0031_key-certbot.pem
-rw------- 1 root root  1704 Nov 29  2020 0032_key-certbot.pem
-rw------- 1 root root  1704 Nov 30  2020 0033_key-certbot.pem
-rw------- 1 root root  1704 Nov 30  2020 0034_key-certbot.pem
-rw------- 1 root root  1704 Dec  1  2020 0035_key-certbot.pem
-rw------- 1 root root  1704 Dec  1  2020 0036_key-certbot.pem
-rw------- 1 root root  1704 Dec  2  2020 0037_key-certbot.pem
-rw------- 1 root root  1704 Dec  2  2020 0038_key-certbot.pem
-rw------- 1 root root  1704 Dec  3  2020 0039_key-certbot.pem
-rw------- 1 root root  1704 Dec  3  2020 0040_key-certbot.pem
-rw------- 1 root root  1704 Dec  4  2020 0041_key-certbot.pem
-rw------- 1 root root  1704 Dec  4  2020 0042_key-certbot.pem
-rw------- 1 root root  1704 Dec  5  2020 0043_key-certbot.pem
-rw------- 1 root root  1704 Dec  5  2020 0044_key-certbot.pem
-rw------- 1 root root  1704 Dec  6  2020 0045_key-certbot.pem
-rw------- 1 root root  1704 Dec  6  2020 0046_key-certbot.pem
-rw------- 1 root root  1704 Dec  7  2020 0047_key-certbot.pem
-rw------- 1 root root  1704 Dec  7  2020 0048_key-certbot.pem
-rw------- 1 root root  1704 Dec  8  2020 0049_key-certbot.pem
-rw------- 1 root root  1704 Dec  8  2020 0050_key-certbot.pem
-rw------- 1 root root  1704 Dec  9  2020 0051_key-certbot.pem
-rw------- 1 root root  1704 Dec  9  2020 0052_key-certbot.pem
-rw------- 1 root root  1704 Dec 10  2020 0053_key-certbot.pem
-rw------- 1 root root  1704 Dec 10  2020 0054_key-certbot.pem
-rw------- 1 root root  1704 Dec 11  2020 0055_key-certbot.pem
-rw------- 1 root root  1708 Dec 11  2020 0056_key-certbot.pem
-rw------- 1 root root  1708 Dec 12  2020 0057_key-certbot.pem
-rw------- 1 root root  1704 Dec 12  2020 0058_key-certbot.pem
-rw------- 1 root root  1708 Dec 13  2020 0059_key-certbot.pem
-rw------- 1 root root  1704 Dec 13  2020 0060_key-certbot.pem
-rw------- 1 root root  1704 Dec 14  2020 0061_key-certbot.pem
-rw------- 1 root root  1704 Dec 14  2020 0062_key-certbot.pem
-rw------- 1 root root  1704 Dec 15  2020 0063_key-certbot.pem
-rw------- 1 root root  1704 Dec 15  2020 0064_key-certbot.pem
-rw------- 1 root root  1704 Dec 16  2020 0065_key-certbot.pem
-rw------- 1 root root  1704 Dec 16  2020 0066_key-certbot.pem
-rw------- 1 root root  1708 Dec 17  2020 0067_key-certbot.pem
-rw------- 1 root root  1704 Dec 17  2020 0068_key-certbot.pem
-rw------- 1 root root  1704 Dec 18  2020 0069_key-certbot.pem
-rw------- 1 root root  1704 Dec 18  2020 0070_key-certbot.pem
-rw------- 1 root root  1708 Dec 19  2020 0071_key-certbot.pem
-rw------- 1 root root  1704 Dec 19  2020 0072_key-certbot.pem
-rw------- 1 root root  1704 Dec 20  2020 0073_key-certbot.pem
-rw------- 1 root root  1704 Dec 20  2020 0074_key-certbot.pem
-rw------- 1 root root  1704 Dec 21  2020 0075_key-certbot.pem
-rw------- 1 root root  1704 Dec 21  2020 0076_key-certbot.pem
-rw------- 1 root root  1704 Dec 22  2020 0077_key-certbot.pem
-rw------- 1 root root  1704 Dec 22  2020 0078_key-certbot.pem
-rw------- 1 root root  1704 Dec 23  2020 0079_key-certbot.pem
-rw------- 1 root root  1704 Dec 23  2020 0080_key-certbot.pem
-rw------- 1 root root  1708 Dec 24  2020 0081_key-certbot.pem
-rw------- 1 root root  1704 Dec 24  2020 0082_key-certbot.pem
-rw------- 1 root root  1704 Dec 25  2020 0083_key-certbot.pem
-rw------- 1 root root  1704 Dec 25  2020 0084_key-certbot.pem
-rw------- 1 root root  1704 Dec 26  2020 0085_key-certbot.pem
-rw------- 1 root root  1704 Dec 26  2020 0086_key-certbot.pem
-rw------- 1 root root  1708 Dec 27  2020 0087_key-certbot.pem
-rw------- 1 root root  1704 Dec 27  2020 0088_key-certbot.pem
-rw------- 1 root root  1708 Dec 28  2020 0089_key-certbot.pem
-rw------- 1 root root  1704 Dec 28  2020 0090_key-certbot.pem
-rw------- 1 root root  1704 Dec 29  2020 0091_key-certbot.pem
-rw------- 1 root root  1704 Dec 29  2020 0092_key-certbot.pem
-rw------- 1 root root  1704 Dec 30  2020 0093_key-certbot.pem
-rw------- 1 root root  1708 Dec 30  2020 0094_key-certbot.pem
-rw------- 1 root root  1704 Dec 31  2020 0095_key-certbot.pem
-rw------- 1 root root  1704 Dec 31  2020 0096_key-certbot.pem
-rw------- 1 root root  1704 Jan  1  2021 0097_key-certbot.pem
-rw------- 1 root root  1704 Jan  1  2021 0098_key-certbot.pem
-rw------- 1 root root  1704 Jan  2  2021 0099_key-certbot.pem
-rw------- 1 root root  1704 Jan  2  2021 0100_key-certbot.pem
-rw------- 1 root root  1704 Jan  3  2021 0101_key-certbot.pem
-rw------- 1 root root  1704 Jan  3  2021 0102_key-certbot.pem
-rw------- 1 root root  1704 Jan  4  2021 0103_key-certbot.pem
-rw------- 1 root root  1704 Jan  4  2021 0104_key-certbot.pem
-rw------- 1 root root  1708 Jan  5  2021 0105_key-certbot.pem
-rw------- 1 root root  1704 Jan  5  2021 0106_key-certbot.pem
-rw------- 1 root root  1704 Jan  6  2021 0107_key-certbot.pem
-rw------- 1 root root  1704 Jan  6  2021 0108_key-certbot.pem
-rw------- 1 root root  1704 Jan  7  2021 0109_key-certbot.pem
-rw------- 1 root root  1704 Jan  7  2021 0110_key-certbot.pem
-rw------- 1 root root  1708 Jan  8  2021 0111_key-certbot.pem
-rw------- 1 root root  1704 Jan  8  2021 0112_key-certbot.pem
-rw------- 1 root root  1704 Jan  9  2021 0113_key-certbot.pem
-rw------- 1 root root  1708 Jan  9  2021 0114_key-certbot.pem
-rw------- 1 root root  1704 Jan 10  2021 0115_key-certbot.pem
-rw------- 1 root root  1704 Jan 10  2021 0116_key-certbot.pem
-rw------- 1 root root  1708 Jan 11  2021 0117_key-certbot.pem
-rw------- 1 root root  1708 Jan 11  2021 0118_key-certbot.pem
-rw------- 1 root root  1704 Jan 12  2021 0119_key-certbot.pem
-rw------- 1 root root  1708 Jan 12  2021 0120_key-certbot.pem
-rw------- 1 root root  1704 Jan 13  2021 0121_key-certbot.pem
-rw------- 1 root root  1704 Jan 13  2021 0122_key-certbot.pem
-rw------- 1 root root  1704 Jan 14  2021 0123_key-certbot.pem
-rw------- 1 root root  1704 Jan 14  2021 0124_key-certbot.pem
-rw------- 1 root root  1704 Jan 15  2021 0125_key-certbot.pem
-rw------- 1 root root  1704 Jan 15  2021 0126_key-certbot.pem
-rw------- 1 root root  1704 Jan 16  2021 0127_key-certbot.pem
-rw------- 1 root root  1704 Jan 16  2021 0128_key-certbot.pem
-rw------- 1 root root  1704 Jan 17  2021 0129_key-certbot.pem
-rw------- 1 root root  1704 Jan 17  2021 0130_key-certbot.pem
-rw------- 1 root root  1704 Jan 18  2021 0131_key-certbot.pem
-rw------- 1 root root  1704 Jan 18  2021 0132_key-certbot.pem
-rw------- 1 root root  1708 Jan 19  2021 0133_key-certbot.pem
-rw------- 1 root root  1704 Jan 19  2021 0134_key-certbot.pem
-rw------- 1 root root  1708 Jan 20  2021 0135_key-certbot.pem
-rw------- 1 root root  1704 Jan 20  2021 0136_key-certbot.pem
-rw------- 1 root root  1704 Jan 21  2021 0137_key-certbot.pem
-rw------- 1 root root  1704 Jan 21  2021 0138_key-certbot.pem
-rw------- 1 root root  1704 Jan 22  2021 0139_key-certbot.pem
-rw------- 1 root root  1704 Jan 22  2021 0140_key-certbot.pem
-rw------- 1 root root  1704 Jan 23  2021 0141_key-certbot.pem
-rw------- 1 root root  1704 Jan 23  2021 0142_key-certbot.pem
-rw------- 1 root root  1704 Jan 24  2021 0143_key-certbot.pem
-rw------- 1 root root  1704 Jan 24  2021 0144_key-certbot.pem
-rw------- 1 root root  1704 Jan 25  2021 0145_key-certbot.pem
-rw------- 1 root root  1704 Jan 25  2021 0146_key-certbot.pem
-rw------- 1 root root  1704 Jan 26  2021 0147_key-certbot.pem
-rw------- 1 root root  1704 Jan 26  2021 0148_key-certbot.pem
-rw------- 1 root root  1704 Jan 27  2021 0149_key-certbot.pem
-rw------- 1 root root  1704 Jan 27  2021 0150_key-certbot.pem
-rw------- 1 root root  1704 Jan 28  2021 0151_key-certbot.pem
-rw------- 1 root root  1704 Jan 28  2021 0152_key-certbot.pem
-rw------- 1 root root  1704 Jan 29  2021 0153_key-certbot.pem
-rw------- 1 root root  1704 Jan 29  2021 0154_key-certbot.pem
-rw------- 1 root root  1704 Jan 30  2021 0155_key-certbot.pem
-rw------- 1 root root  1704 Jan 30  2021 0156_key-certbot.pem
-rw------- 1 root root  1704 Jan 31  2021 0157_key-certbot.pem
-rw------- 1 root root  1708 Jan 31  2021 0158_key-certbot.pem
-rw------- 1 root root  1704 Feb  1  2021 0159_key-certbot.pem
-rw------- 1 root root  1704 Feb  1  2021 0160_key-certbot.pem
-rw------- 1 root root  1704 Feb  2  2021 0161_key-certbot.pem
-rw------- 1 root root  1704 Feb  2  2021 0162_key-certbot.pem
-rw------- 1 root root  1704 Feb  3  2021 0163_key-certbot.pem
-rw------- 1 root root  1708 Feb  3  2021 0164_key-certbot.pem
-rw------- 1 root root  1704 Feb  4  2021 0165_key-certbot.pem
-rw------- 1 root root  1704 Feb  4  2021 0166_key-certbot.pem
-rw------- 1 root root  1704 Feb  5  2021 0167_key-certbot.pem
-rw------- 1 root root  1704 Feb  5  2021 0168_key-certbot.pem
-rw------- 1 root root  1708 Feb  6  2021 0169_key-certbot.pem
-rw------- 1 root root  1704 Feb  6  2021 0170_key-certbot.pem
-rw------- 1 root root  1708 Feb  7  2021 0171_key-certbot.pem
-rw------- 1 root root  1704 Feb  7  2021 0172_key-certbot.pem
-rw------- 1 root root  1704 Feb  8  2021 0173_key-certbot.pem
-rw------- 1 root root  1704 Feb  8  2021 0174_key-certbot.pem
-rw------- 1 root root  1704 Feb  9  2021 0175_key-certbot.pem
-rw------- 1 root root  1704 Feb  9  2021 0176_key-certbot.pem
-rw------- 1 root root  1704 Feb 10  2021 0177_key-certbot.pem
-rw------- 1 root root  1704 Feb 10  2021 0178_key-certbot.pem
-rw------- 1 root root  1704 Feb 11  2021 0179_key-certbot.pem
-rw------- 1 root root  1708 Feb 11  2021 0180_key-certbot.pem
-rw------- 1 root root  1708 Feb 12  2021 0181_key-certbot.pem
-rw------- 1 root root  1704 Feb 12  2021 0182_key-certbot.pem
-rw------- 1 root root  1704 Feb 13  2021 0183_key-certbot.pem
-rw------- 1 root root  1704 Feb 13  2021 0184_key-certbot.pem
-rw------- 1 root root  1704 Feb 14  2021 0185_key-certbot.pem
-rw------- 1 root root  1704 Feb 14  2021 0186_key-certbot.pem
-rw------- 1 root root  1704 Feb 15  2021 0187_key-certbot.pem
-rw------- 1 root root  1704 Feb 15  2021 0188_key-certbot.pem
-rw------- 1 root root  1704 Feb 15  2021 0189_key-certbot.pem
-rw------- 1 root root  1704 Feb 15  2021 0190_key-certbot.pem
-rw------- 1 root root  1704 Feb 15  2021 0191_key-certbot.pem
-rw------- 1 root root  1704 Feb 15  2021 0192_key-certbot.pem
-rw------- 1 root root  1704 Feb 15  2021 0193_key-certbot.pem
-rw------- 1 root root  1704 Feb 15  2021 0194_key-certbot.pem
-rw------- 1 root root  1704 Feb 15  2021 0195_key-certbot.pem
-rw------- 1 root root  1704 Feb 15  2021 0196_key-certbot.pem
-rw------- 1 root root  1704 Feb 15  2021 0197_key-certbot.pem
-rw------- 1 root root  1704 Feb 15  2021 0198_key-certbot.pem
-rw------- 1 root root  1708 Feb 16  2021 0199_key-certbot.pem
-rw------- 1 root root  1708 Mar  7  2021 0200_key-certbot.pem
-rw------- 1 root root  1704 Mar  7  2021 0201_key-certbot.pem
-rw------- 1 root root  1704 May  6 16:20 0202_key-certbot.pem
-rw------- 1 root root  1704 May  6 16:20 0203_key-certbot.pem
-rw------- 1 root root  1708 May  7 08:40 0204_key-certbot.pem
-rw------- 1 root root  1704 May  7 08:40 0205_key-certbot.pem
-rw------- 1 root root  1704 May  7 12:53 0206_key-certbot.pem
-rw------- 1 root root  1704 May  7 12:53 0207_key-certbot.pem
-rw------- 1 root root  1704 May  8 08:03 0208_key-certbot.pem
-rw------- 1 root root  1708 May  8 08:03 0209_key-certbot.pem
-rw------- 1 root root  1704 May  8 21:49 0210_key-certbot.pem
-rw------- 1 root root  1708 May  8 21:49 0211_key-certbot.pem
-rw------- 1 root root  1704 May  9 09:00 0212_key-certbot.pem
-rw------- 1 root root  1704 May  9 09:00 0213_key-certbot.pem
-rw------- 1 root root  1708 May  9 15:49 0214_key-certbot.pem
-rw------- 1 root root  1708 May  9 15:49 0215_key-certbot.pem
-rw------- 1 root root  1704 May 10 11:35 0216_key-certbot.pem
-rw------- 1 root root  1704 May 10 11:35 0217_key-certbot.pem
-rw------- 1 root root  1704 May 10 17:48 0218_key-certbot.pem
-rw------- 1 root root  1708 May 10 17:48 0219_key-certbot.pem
-rw------- 1 root root  1704 May 11 01:16 0220_key-certbot.pem
-rw------- 1 root root  1704 May 11 01:16 0221_key-certbot.pem
-rw------- 1 root root  1704 May 11 16:46 0222_key-certbot.pem
-rw------- 1 root root  1708 May 11 16:46 0223_key-certbot.pem
-rw------- 1 root root  1704 May 12 02:52 0224_key-certbot.pem
-rw------- 1 root root  1704 May 12 02:52 0225_key-certbot.pem
-rw------- 1 root root  1704 May 12 23:51 0226_key-certbot.pem
-rw------- 1 root root  1704 May 12 23:51 0227_key-certbot.pem
-rw------- 1 root root  1708 May 13 11:12 0228_key-certbot.pem
-rw------- 1 root root  1704 May 13 11:12 0229_key-certbot.pem
-rw------- 1 root root  1704 May 13 22:31 0230_key-certbot.pem
-rw------- 1 root root  1704 May 13 22:31 0231_key-certbot.pem
-rw------- 1 root root  1704 May 14 07:07 0232_key-certbot.pem
-rw------- 1 root root  1704 May 14 07:07 0233_key-certbot.pem
-rw------- 1 root root  1704 May 14 13:22 0234_key-certbot.pem
-rw------- 1 root root  1704 May 14 13:23 0235_key-certbot.pem
-rw------- 1 root root  1704 May 15 03:11 0236_key-certbot.pem
-rw------- 1 root root  1704 May 15 03:11 0237_key-certbot.pem
-rw------- 1 root root  1704 May 15 20:14 0238_key-certbot.pem
-rw------- 1 root root  1704 May 15 20:14 0239_key-certbot.pem
-rw------- 1 root root  1704 May 16 06:51 0240_key-certbot.pem
-rw------- 1 root root  1708 May 16 06:51 0241_key-certbot.pem
-rw------- 1 root root  1704 May 16 19:55 0242_key-certbot.pem
-rw------- 1 root root  1704 May 16 19:55 0243_key-certbot.pem
-rw------- 1 root root  1708 May 17 07:24 0244_key-certbot.pem
-rw------- 1 root root  1704 May 17 07:24 0245_key-certbot.pem
-rw------- 1 root root  1704 May 17 15:34 0246_key-certbot.pem
-rw------- 1 root root  1704 May 17 15:34 0247_key-certbot.pem
-rw------- 1 root root  1708 May 18 07:31 0248_key-certbot.pem
-rw------- 1 root root  1708 May 18 07:31 0249_key-certbot.pem
-rw------- 1 root root  1704 May 18 22:12 0250_key-certbot.pem
-rw------- 1 root root  1704 May 18 22:12 0251_key-certbot.pem
-rw------- 1 root root  1704 May 19 08:42 0252_key-certbot.pem
-rw------- 1 root root  1704 May 19 08:42 0253_key-certbot.pem
-rw------- 1 root root  1704 May 19 12:31 0254_key-certbot.pem
-rw------- 1 root root  1704 May 19 12:31 0255_key-certbot.pem
-rw------- 1 root root  1704 May 20 01:36 0256_key-certbot.pem
-rw------- 1 root root  1708 May 20 01:36 0257_key-certbot.pem
-rw------- 1 root root  1704 May 20 16:55 0258_key-certbot.pem
-rw------- 1 root root  1704 May 20 16:55 0259_key-certbot.pem
-rw------- 1 root root  1704 May 21 06:51 0260_key-certbot.pem
-rw------- 1 root root  1704 May 21 06:51 0261_key-certbot.pem
-rw------- 1 root root  1704 May 21 22:17 0262_key-certbot.pem
-rw------- 1 root root  1704 May 21 22:17 0263_key-certbot.pem
-rw------- 1 root root  1704 May 22 08:26 0264_key-certbot.pem
-rw------- 1 root root  1704 May 22 08:26 0265_key-certbot.pem
-rw------- 1 root root  1704 May 22 12:57 0266_key-certbot.pem
-rw------- 1 root root  1704 May 22 12:57 0267_key-certbot.pem
-rw------- 1 root root  1704 May 23 01:50 0268_key-certbot.pem
-rw------- 1 root root  1704 May 23 01:50 0269_key-certbot.pem
-rw------- 1 root root  1704 May 23 19:49 0270_key-certbot.pem
-rw------- 1 root root  1708 May 23 19:49 0271_key-certbot.pem
-rw------- 1 root root  1704 May 24 08:36 0272_key-certbot.pem
-rw------- 1 root root  1704 May 24 08:36 0273_key-certbot.pem
-rw------- 1 root root  1708 May 24 20:42 0274_key-certbot.pem
-rw------- 1 root root  1704 May 24 20:42 0275_key-certbot.pem
-rw------- 1 root root  1704 May 25 00:23 0276_key-certbot.pem
-rw------- 1 root root  1708 May 25 00:23 0277_key-certbot.pem
-rw------- 1 root root  1708 May 25 22:23 0278_key-certbot.pem
-rw------- 1 root root  1704 May 25 22:23 0279_key-certbot.pem
-rw------- 1 root root  1704 May 26 06:54 0280_key-certbot.pem
-rw------- 1 root root  1708 May 26 06:54 0281_key-certbot.pem
-rw------- 1 root root  1708 May 26 14:02 0282_key-certbot.pem
-rw------- 1 root root  1704 May 26 14:02 0283_key-certbot.pem
-rw------- 1 root root  1704 May 27 08:46 0284_key-certbot.pem
-rw------- 1 root root  1708 May 27 08:46 0285_key-certbot.pem
-rw------- 1 root root  1708 May 27 23:39 0286_key-certbot.pem
-rw------- 1 root root  1704 May 27 23:39 0287_key-certbot.pem
-rw------- 1 root root  1704 May 28 06:41 0288_key-certbot.pem
-rw------- 1 root root  1704 May 28 06:41 0289_key-certbot.pem
-rw------- 1 root root  1708 May 28 21:36 0290_key-certbot.pem
-rw------- 1 root root  1708 May 28 21:36 0291_key-certbot.pem
-rw------- 1 root root  1704 May 29 02:25 0292_key-certbot.pem
-rw------- 1 root root  1708 May 29 02:25 0293_key-certbot.pem
-rw------- 1 root root  1704 May 29 22:54 0294_key-certbot.pem
-rw------- 1 root root  1704 May 29 22:54 0295_key-certbot.pem
-rw------- 1 root root  1704 May 30 06:33 0296_key-certbot.pem
-rw------- 1 root root  1704 May 30 06:33 0297_key-certbot.pem
-rw------- 1 root root  1704 May 30 14:03 0298_key-certbot.pem
-rw------- 1 root root  1704 May 30 14:03 0299_key-certbot.pem
-rw------- 1 root root  1704 May 31 09:29 0300_key-certbot.pem
-rw------- 1 root root  1704 May 31 09:29 0301_key-certbot.pem
-rw------- 1 root root  1704 May 31 18:59 0302_key-certbot.pem
-rw------- 1 root root  1704 May 31 18:59 0303_key-certbot.pem
-rw------- 1 root root  1708 Jun  1 01:48 0304_key-certbot.pem
-rw------- 1 root root  1704 Jun  1 01:48 0305_key-certbot.pem
-rw------- 1 root root  1704 Jun  1 22:20 0306_key-certbot.pem
-rw------- 1 root root  1704 Jun  1 22:20 0307_key-certbot.pem
-rw------- 1 root root  1704 Jun  2 07:26 0308_key-certbot.pem
-rw------- 1 root root  1704 Jun  2 07:26 0309_key-certbot.pem
-rw------- 1 root root  1704 Jun  2 20:54 0310_key-certbot.pem
-rw------- 1 root root  1704 Jun  2 20:54 0311_key-certbot.pem
-rw------- 1 root root  1704 Jun  3 03:59 0312_key-certbot.pem
-rw------- 1 root root  1704 Jun  3 03:59 0313_key-certbot.pem
-rw------- 1 root root  1704 Jun  3 15:16 0314_key-certbot.pem
-rw------- 1 root root  1704 Jun  3 15:16 0315_key-certbot.pem
-rw------- 1 root root  1704 Jun  4 07:29 0316_key-certbot.pem
-rw------- 1 root root  1704 Jun  4 07:29 0317_key-certbot.pem
-rw------- 1 root root  1704 Jun  4 18:50 0318_key-certbot.pem
-rw------- 1 root root  1708 Jun  4 18:50 0319_key-certbot.pem
-rw------- 1 root root  1704 Jun  5 12:01 0320_key-certbot.pem
-rw------- 1 root root  1704 Jun  5 12:01 0321_key-certbot.pem
-rw------- 1 root root  1704 Jun  5 13:43 0322_key-certbot.pem
-rw------- 1 root root  1704 Jun  5 13:43 0323_key-certbot.pem
-rw------- 1 root root  1704 Jun  6 00:19 0324_key-certbot.pem
-rw------- 1 root root  1704 Jun  6 00:19 0325_key-certbot.pem
-rw------- 1 root root  1704 Jun  6 15:05 0326_key-certbot.pem
-rw------- 1 root root  1704 Jun  6 15:05 0327_key-certbot.pem
-rw------- 1 root root  1704 Jun  7 08:11 0328_key-certbot.pem
-rw------- 1 root root  1704 Jun  7 08:11 0329_key-certbot.pem
-rw------- 1 root root  1708 Jun  7 16:19 0330_key-certbot.pem
-rw------- 1 root root  1704 Jun  7 16:19 0331_key-certbot.pem
-rw------- 1 root root  1708 Jun  8 05:28 0332_key-certbot.pem
-rw------- 1 root root  1708 Jun  8 05:28 0333_key-certbot.pem
-rw------- 1 root root  1704 Jun  8 20:06 0334_key-certbot.pem
-rw------- 1 root root  1704 Jun  8 20:06 0335_key-certbot.pem
-rw------- 1 root root  1704 Jun  9 09:12 0336_key-certbot.pem
-rw------- 1 root root  1704 Jun  9 09:12 0337_key-certbot.pem
-rw------- 1 root root  1708 Jun  9 22:19 0338_key-certbot.pem
-rw------- 1 root root  1704 Jun  9 22:19 0339_key-certbot.pem
-rw------- 1 root root  1704 Jun 10 09:44 0340_key-certbot.pem
-rw------- 1 root root  1704 Jun 10 09:44 0341_key-certbot.pem
-rw------- 1 root root  1704 Jun 10 15:12 0342_key-certbot.pem
-rw------- 1 root root  1704 Jun 10 15:12 0343_key-certbot.pem
-rw------- 1 root root  1704 Jun 11 04:00 0344_key-certbot.pem
-rw------- 1 root root  1704 Jun 11 04:00 0345_key-certbot.pem
-rw------- 1 root root  1704 Jun 11 17:06 0346_key-certbot.pem
-rw------- 1 root root  1704 Jun 11 17:06 0347_key-certbot.pem
-rw------- 1 root root  1704 Jun 12 11:19 0348_key-certbot.pem
-rw------- 1 root root  1704 Aug 11 09:04 0349_key-certbot.pem
-rw------- 1 root root  1704 Aug 11 12:22 0350_key-certbot.pem
-rw------- 1 root root  1704 Sep  7 16:19 0351_key-certbot.pem
-rw------- 1 root root  1704 Sep  7 17:24 0352_key-certbot.pem
-rw------- 1 root root  1704 Sep  7 17:56 0353_key-certbot.pem

/etc/letsencrypt/live:
total 20
drwx------ 4 root root 4096 Feb 15  2021 .
drwxr-xr-x 9 root root 4096 Sep  8 09:22 ..
-rw-r--r-- 1 root root  740 May 24  2020 README
drwxr-xr-x 2 root root 4096 Sep  7 17:56 notgerardo.com
drwxr-xr-x 2 root root 4096 Aug 11 12:22 notgerardo.com-0001

/etc/letsencrypt/live/notgerardo.com:
total 12
drwxr-xr-x 2 root root 4096 Sep  7 17:56 .
drwx------ 4 root root 4096 Feb 15  2021 ..
-rw-r--r-- 1 root root  692 May 24  2020 README
lrwxrwxrwx 1 root root   39 Sep  7 17:56 cert.pem -> ../../archive/notgerardo.com/cert10.pem
lrwxrwxrwx 1 root root   40 Sep  7 17:56 chain.pem -> ../../archive/notgerardo.com/chain10.pem
lrwxrwxrwx 1 root root   44 Sep  7 17:56 fullchain.pem -> ../../archive/notgerardo.com/fullchain10.pem
lrwxrwxrwx 1 root root   42 Sep  7 17:56 privkey.pem -> ../../archive/notgerardo.com/privkey10.pem

/etc/letsencrypt/live/notgerardo.com-0001:
total 12
drwxr-xr-x 2 root root 4096 Aug 11 12:22 .
drwx------ 4 root root 4096 Feb 15  2021 ..
-rw-r--r-- 1 root root  692 Feb 15  2021 README
lrwxrwxrwx 1 root root   43 Aug 11 12:22 cert.pem -> ../../archive/notgerardo.com-0001/cert4.pem
lrwxrwxrwx 1 root root   44 Aug 11 12:22 chain.pem -> ../../archive/notgerardo.com-0001/chain4.pem
lrwxrwxrwx 1 root root   48 Aug 11 12:22 fullchain.pem -> ../../archive/notgerardo.com-0001/fullchain4.pem
lrwxrwxrwx 1 root root   46 Aug 11 12:22 privkey.pem -> ../../archive/notgerardo.com-0001/privkey4.pem

/etc/letsencrypt/renewal:
total 16
drwxr-xr-x 2 root root 4096 Sep  7 17:56 .
drwxr-xr-x 9 root root 4096 Sep  8 09:22 ..
-rw-r--r-- 1 root root  539 Aug 11 12:22 notgerardo.com-0001.conf
-rw-r--r-- 1 root root  527 Sep  7 17:56 notgerardo.com.conf

/etc/letsencrypt/renewal-hooks:
total 20
drwxr-xr-x 5 root root 4096 May 22  2020 .
drwxr-xr-x 9 root root 4096 Sep  8 09:22 ..
drwxr-xr-x 2 root root 4096 May 22  2020 deploy
drwxr-xr-x 2 root root 4096 Sep  7 17:08 post
drwxr-xr-x 2 root root 4096 Sep  7 17:08 pre

/etc/letsencrypt/renewal-hooks/deploy:
total 8
drwxr-xr-x 2 root root 4096 May 22  2020 .
drwxr-xr-x 5 root root 4096 May 22  2020 ..

/etc/letsencrypt/renewal-hooks/post:
total 8
drwxr-xr-x 2 root root 4096 Sep  7 17:08 .
drwxr-xr-x 5 root root 4096 May 22  2020 ..

/etc/letsencrypt/renewal-hooks/pre:
total 8
drwxr-xr-x 2 root root 4096 Sep  7 17:08 .
drwxr-xr-x 5 root root 4096 May 22  2020 ..

$ sudo certbot certificates
Saving debug log to /var/log/letsencrypt/letsencrypt.log

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Found the following certs:
  Certificate Name: notgerardo.com-0001
    Serial Number: 4334cfb531d085c2f993064b10c5661597d
    Key Type: RSA
    Domains: notgerardo.com
    Expiry Date: 2021-11-09 09:22:52+00:00 (VALID: 62 days)
    Certificate Path: /etc/letsencrypt/live/notgerardo.com-0001/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/notgerardo.com-0001/privkey.pem
  Certificate Name: notgerardo.com
    Serial Number: 34db976b8cfd3749a0c75ca54daf286904c
    Key Type: RSA
    Domains: notgerardo.com www.notgerardo.com
    Expiry Date: 2021-12-06 14:56:54+00:00 (VALID: 89 days)
    Certificate Path: /etc/letsencrypt/live/notgerardo.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/notgerardo.com/privkey.pem
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1 Like

It looks like you shouldn't even need the first cert:

I would switch to using only the second one and then delete the first one.

1 Like

For this certificate:

notgerardo.com-0001

you used the standalone authenticator, which you can see by looking in this file:

/etc/letsencrypt/renewal/notgerardo.com-0001.conf


These steps will cleanup your configuration (and possibly fix your IPv6 issue).

  1. Download mysite.conf.txt (1.1 KB)
    and put it in the /etc/nginx/sites-available directory.

  2. Run the following:

sudo rm /etc/nginx/sites-enabled/default.txt
sudo mv /etc/nginx/sites-available/mysite.conf /etc/nginx/sites-available/mysite.conf.bak
sudo mv /etc/nginx/sites-available/mysite.conf.txt /etc/nginx/sites-available/mysite.conf
sudo nginx -s reload
sudo certbot renew --dry-run
1 Like

Hi @rg305 , thanks for your response. I have deleted the first certificate using sudo certbot delete.

The following confirms it worked:

$ sudo certbot certificates
Saving debug log to /var/log/letsencrypt/letsencrypt.log

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Found the following certs:
  Certificate Name: notgerardo.com
    Serial Number: 34db976b8cfd3749a0c75ca54daf286904c
    Key Type: RSA
    Domains: notgerardo.com www.notgerardo.com
    Expiry Date: 2021-12-06 14:56:54+00:00 (VALID: 89 days)
    Certificate Path: /etc/letsencrypt/live/notgerardo.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/notgerardo.com/privkey.pem
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

This should indeed help in decluttering the area.

2 Likes

We may have problems lurking in /etc/letsencrypt/renewal/notgerardo.com.conf. Please post its contents.

Hi @griffin, the contents:

# renew_before_expiry = 30 days
version = 1.18.0
archive_dir = /etc/letsencrypt/archive/notgerardo.com
cert = /etc/letsencrypt/live/notgerardo.com/cert.pem
privkey = /etc/letsencrypt/live/notgerardo.com/privkey.pem
chain = /etc/letsencrypt/live/notgerardo.com/chain.pem
fullchain = /etc/letsencrypt/live/notgerardo.com/fullchain.pem

# Options used in the renewal process
[renewalparams]
account = 605a2529f5dd9f64f05470b5f398d569
authenticator = nginx
installer = nginx
server = https://acme-v02.api.letsencrypt.org/directory
1 Like

Did the --dry-run test succeed?

1 Like

Ahhhh, I just saw this post which came when I was working on the previous post by @rg305 deleting the other certificate. Let me try this.

2 Likes

That's the correct file. I was meaning the deleted one. :slightly_smiling_face:

1 Like

LOL! Well... unknown anymore since already deleted... :grimacing:

1 Like

No worries. That's for the best. :blush:

1 Like

@griffin @rg305 sudo certbot renew --dry-run is now successful after following the instructions provided by @griffin

It is still a bit unclear to me what was wrong. I think for starters the IPv6 issue. Then that there were two certificates indeed correctly identified to have been started one with nginx and the other one with standalone. Am I correct in my understanding?

Also, thank you for your help :slight_smile:

2 Likes

Your port 80 server block wasn't listening on IPv6. I fixed that. :wink:

There were indeed two certificate renewal configurations with the properties you've stated. Fortunately, the correct (nginx) one included both the apex and www.

1 Like

But was that fix applied?
I still get:

curl -Iki6 www.notgerardo.com
HTTP/1.1 403 Forbidden

[did nginx get restarted?]

1 Like

Possibly undead worker threads?

1 Like