Remove OCSP stapling

https://letsencrypt.org/2024/07/23/replacing-ocsp-with-crls.html
This commit is contained in:
Tommy
2024-07-26 06:52:58 -07:00
committed by GitHub
parent 6e6b7c3c16
commit faa35bf11b
7 changed files with 3 additions and 19 deletions

View File

@@ -13,5 +13,4 @@ server {
ssl_certificate /etc/letsencrypt/live/hostname.of.your.server/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/hostname.of.your.server/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/hostname.of.your.server/chain.pem;
ssl_stapling_file /var/cache/certbot-ocsp-fetcher/hostname.of.your.server.der;
}

View File

@@ -9,7 +9,6 @@ server {
ssl_certificate /etc/letsencrypt/live/miniflux.yourdomain.tld/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/miniflux.yourdomain.tld/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/miniflux.yourdomain.tld/chain.pem;
ssl_stapling_file /var/cache/certbot-ocsp-fetcher/miniflux.yourdomain.tld.der;
include snippets/universal_paths.conf;
include snippets/hsts.conf;

View File

@@ -11,7 +11,6 @@ server {
ssl_certificate /etc/letsencrypt/live/uptime.yourdomain.tld/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/uptime.yourdomain.tld/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/uptime.yourdomain.tld/chain.pem;
ssl_stapling_file /var/cache/certbot-ocsp-fetcher/uptime.yourdomain.tld.der;
include snippets/universal_paths.conf;
include snippets/hsts.conf;