Skip to content

Commit

Permalink
Update php_sockets.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisgoddard authored Mar 9, 2024
1 parent 686b2d9 commit 5aa77f1
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions nginx-config/conf.d/php_sockets.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 5aa77f1

Please sign in to comment.