1 2 3 4 5 6 7 | nginx -t nginx: [warn] "ssl_stapling" ignored, no OCSP responder URL in the certificate "/etc/letsencrypt/live/example.com.au/fullchain.pem" nginx: [warn] "ssl_stapling" ignored, no OCSP responder URL in the certificate "/etc/letsencrypt/live/example.com.au/fullchain.pem" nginx: [warn] "ssl_stapling" ignored, no OCSP responder URL in the certificate "/etc/letsencrypt/live/example.com/fullchain.pem" nginx: [warn] "ssl_stapling" ignored, no OCSP responder URL in the certificate "/etc/letsencrypt/live/example.com/fullchain.pem" nginx: the configuration file /etc/nginx/nginx .conf syntax is ok nginx: configuration file /etc/nginx/nginx .conf test is successful |
Solution
Comment out ssl_stapling
1 2 3 | # OCSP stapling turned off JM 1/6/2025 # ssl_stapling on; # ssl_stapling_verify on; |
More info https://kbeezie.com/nginx-ssl_stapling-ignored-ocsp-letsencrypt/
0 Comments