diff --git a/nginx-config/conf.d/php_sockets.conf b/nginx-config/conf.d/php_sockets.conf index 2c6973a..cfbff9b 100644 --- a/nginx-config/conf.d/php_sockets.conf +++ b/nginx-config/conf.d/php_sockets.conf @@ -3,15 +3,19 @@ upstream php_sockets { # [OPTION] Specify PHP version for Socket. # Support from https://www.php.net/supported-versions.php - # Option 1. [DEFAULT] PHP 8.0 - # Supported until 2023-11-26 - server unix:/var/run/php/php8.0-fpm.sock; + # Option 1. [DEFAULT] PHP 8.3 + # Supported until 2026-11-23 + server unix:/var/run/php/php8.3-fpm.sock; - # Option 2. [FALLBACK] PHP 7.4 - # Supported until 2022-11-28 - server unix:/var/run/php/php7.4-fpm.sock backup; + # Option 2. [DISABLED] PHP 8.2 + # Supported until 2025-12-08 + #server unix:/var/run/php/php8.2-fpm.sock; + + # Option 3. [DISABLED] PHP 8.1 + # Supported until 2024-11-25 + #server unix:/var/run/php/php8.1-fpm.sock; + + # [OPTION] Specify backup socket for PHP. + #server unix:/var/run/php/php8.3-fpm.sock backup; - # Option 3. [DISABLED] PHP 7.3 - # Supported until 2021-12-06 - #server unix:/run/php/php7.3-fpm.sock backup; }