Просмотр исходного кода

Comment out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025 (#5002)

sahsanu 9 месяцев назад
Родитель
Сommit
8bc4958003
56 измененных файлов с 168 добавлено и 112 удалено
  1. 3 2
      install/deb/templates/mail/nginx/default.stpl
  2. 3 2
      install/deb/templates/mail/nginx/default_disabled.stpl
  3. 3 2
      install/deb/templates/mail/nginx/default_snappymail.stpl
  4. 3 2
      install/deb/templates/mail/nginx/disabled.stpl
  5. 3 2
      install/deb/templates/mail/nginx/snappymail.stpl
  6. 3 2
      install/deb/templates/mail/nginx/web_system.stpl
  7. 3 2
      install/deb/templates/web/nginx/caching.stpl
  8. 3 2
      install/deb/templates/web/nginx/default.stpl
  9. 3 2
      install/deb/templates/web/nginx/hosting.stpl
  10. 3 2
      install/deb/templates/web/nginx/php-fpm/chevereto.stpl
  11. 3 2
      install/deb/templates/web/nginx/php-fpm/cms_made_simple.stpl
  12. 3 2
      install/deb/templates/web/nginx/php-fpm/codeigniter.stpl
  13. 3 2
      install/deb/templates/web/nginx/php-fpm/craftcms.stpl
  14. 3 2
      install/deb/templates/web/nginx/php-fpm/datalife_engine.stpl
  15. 3 2
      install/deb/templates/web/nginx/php-fpm/default.stpl
  16. 3 2
      install/deb/templates/web/nginx/php-fpm/dokuwiki.stpl
  17. 3 2
      install/deb/templates/web/nginx/php-fpm/dolibarr.stpl
  18. 3 2
      install/deb/templates/web/nginx/php-fpm/drupal-composer.stpl
  19. 3 2
      install/deb/templates/web/nginx/php-fpm/drupal-social.stpl
  20. 3 2
      install/deb/templates/web/nginx/php-fpm/drupal.stpl
  21. 3 2
      install/deb/templates/web/nginx/php-fpm/flarum-composer.stpl
  22. 3 2
      install/deb/templates/web/nginx/php-fpm/flarum.stpl
  23. 3 2
      install/deb/templates/web/nginx/php-fpm/forgejo.stpl
  24. 3 2
      install/deb/templates/web/nginx/php-fpm/gitea.stpl
  25. 3 2
      install/deb/templates/web/nginx/php-fpm/grav.stpl
  26. 3 2
      install/deb/templates/web/nginx/php-fpm/joomla.stpl
  27. 3 2
      install/deb/templates/web/nginx/php-fpm/laravel.stpl
  28. 3 2
      install/deb/templates/web/nginx/php-fpm/magento.stpl
  29. 3 2
      install/deb/templates/web/nginx/php-fpm/mautic.stpl
  30. 3 2
      install/deb/templates/web/nginx/php-fpm/modx.stpl
  31. 3 2
      install/deb/templates/web/nginx/php-fpm/moodle.stpl
  32. 3 2
      install/deb/templates/web/nginx/php-fpm/no-php.stpl
  33. 3 2
      install/deb/templates/web/nginx/php-fpm/odoo.stpl
  34. 3 2
      install/deb/templates/web/nginx/php-fpm/opencart.stpl
  35. 3 2
      install/deb/templates/web/nginx/php-fpm/opengist.stpl
  36. 3 2
      install/deb/templates/web/nginx/php-fpm/openproject.stpl
  37. 3 2
      install/deb/templates/web/nginx/php-fpm/osticket.stpl
  38. 3 2
      install/deb/templates/web/nginx/php-fpm/owncloud.stpl
  39. 3 2
      install/deb/templates/web/nginx/php-fpm/phpbb.stpl
  40. 3 2
      install/deb/templates/web/nginx/php-fpm/piwik.stpl
  41. 3 2
      install/deb/templates/web/nginx/php-fpm/prestashop.stpl
  42. 3 2
      install/deb/templates/web/nginx/php-fpm/projectsend.stpl
  43. 3 2
      install/deb/templates/web/nginx/php-fpm/pyrocms.stpl
  44. 3 2
      install/deb/templates/web/nginx/php-fpm/sendy.stpl
  45. 3 2
      install/deb/templates/web/nginx/php-fpm/suspended.stpl
  46. 3 2
      install/deb/templates/web/nginx/php-fpm/symfony2-3.stpl
  47. 3 2
      install/deb/templates/web/nginx/php-fpm/symfony4-5.stpl
  48. 3 2
      install/deb/templates/web/nginx/php-fpm/thunder.stpl
  49. 3 2
      install/deb/templates/web/nginx/php-fpm/vvveb.stpl
  50. 3 2
      install/deb/templates/web/nginx/php-fpm/webasyst.stpl
  51. 3 2
      install/deb/templates/web/nginx/php-fpm/wordpress-disable-xmlrpc.stpl
  52. 3 2
      install/deb/templates/web/nginx/php-fpm/wordpress.stpl
  53. 3 2
      install/deb/templates/web/nginx/php-fpm/wordpress_mu_subdir.stpl
  54. 3 2
      install/deb/templates/web/nginx/php-fpm/yourls.stpl
  55. 3 2
      install/deb/templates/web/nginx/suspended.stpl
  56. 3 2
      src/deb/nginx/nginx.conf

+ 3 - 2
install/deb/templates/mail/nginx/default.stpl

@@ -8,8 +8,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/mail/nginx/default_disabled.stpl

@@ -7,8 +7,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/mail/nginx/default_snappymail.stpl

@@ -8,8 +8,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/mail/nginx/disabled.stpl

@@ -8,8 +8,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/mail/nginx/snappymail.stpl

@@ -8,8 +8,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/mail/nginx/web_system.stpl

@@ -8,8 +8,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/caching.stpl

@@ -11,8 +11,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/default.stpl

@@ -11,8 +11,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/hosting.stpl

@@ -11,8 +11,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/chevereto.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/cms_made_simple.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/codeigniter.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/craftcms.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/datalife_engine.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/default.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/dokuwiki.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/dolibarr.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/drupal-composer.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/drupal-social.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/drupal.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/flarum-composer.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/flarum.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/forgejo.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/gitea.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/grav.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/joomla.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/laravel.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/magento.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/mautic.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/modx.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/moodle.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/no-php.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/odoo.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/opencart.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/opengist.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/openproject.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/osticket.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/owncloud.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/phpbb.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/piwik.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/prestashop.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/projectsend.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/pyrocms.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/sendy.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/suspended.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/symfony2-3.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/symfony4-5.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/thunder.stpl

@@ -9,8 +9,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/vvveb.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/webasyst.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/wordpress-disable-xmlrpc.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/wordpress.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/wordpress_mu_subdir.stpl

@@ -15,8 +15,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/php-fpm/yourls.stpl

@@ -14,8 +14,9 @@ server {
 
 	ssl_certificate      %ssl_pem%;
 	ssl_certificate_key  %ssl_key%;
-	ssl_stapling on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
install/deb/templates/web/nginx/suspended.stpl

@@ -14,8 +14,9 @@ server {
 
 	ssl_certificate     %ssl_pem%;
 	ssl_certificate_key %ssl_key%;
-	ssl_stapling        on;
-	ssl_stapling_verify on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling        on;
+	#ssl_stapling_verify on;
 
 	# TLS 1.3 0-RTT anti-replay
 	if ($anti_replay = 307) { return 307 https://$host$request_uri; }

+ 3 - 2
src/deb/nginx/nginx.conf

@@ -84,8 +84,9 @@ http {
 	ssl_session_cache             shared:SSL:10m;
 	ssl_session_tickets           on;
 	ssl_session_timeout           7d;
-	ssl_stapling                  on;
-	ssl_stapling_verify           on;
+	#Commented out ssl_stapling directives due to Lets Encrypt ending OCSP support in 2025
+	#ssl_stapling                  on;
+	#ssl_stapling_verify           on;
 	resolver                      1.0.0.1 8.8.4.4 1.1.1.1 8.8.8.8 valid=300s ipv6=off;
 	resolver_timeout              5s;
 	# Security headers