Skip to content

Commit 5aa77f1

Browse files
authored
Update php_sockets.conf
1 parent 686b2d9 commit 5aa77f1

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

nginx-config/conf.d/php_sockets.conf

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,19 @@ upstream php_sockets {
33
# [OPTION] Specify PHP version for Socket.
44
# Support from https://www.php.net/supported-versions.php
55

6-
# Option 1. [DEFAULT] PHP 8.0
7-
# Supported until 2023-11-26
8-
server unix:/var/run/php/php8.0-fpm.sock;
6+
# Option 1. [DEFAULT] PHP 8.3
7+
# Supported until 2026-11-23
8+
server unix:/var/run/php/php8.3-fpm.sock;
99

10-
# Option 2. [FALLBACK] PHP 7.4
11-
# Supported until 2022-11-28
12-
server unix:/var/run/php/php7.4-fpm.sock backup;
10+
# Option 2. [DISABLED] PHP 8.2
11+
# Supported until 2025-12-08
12+
#server unix:/var/run/php/php8.2-fpm.sock;
13+
14+
# Option 3. [DISABLED] PHP 8.1
15+
# Supported until 2024-11-25
16+
#server unix:/var/run/php/php8.1-fpm.sock;
17+
18+
# [OPTION] Specify backup socket for PHP.
19+
#server unix:/var/run/php/php8.3-fpm.sock backup;
1320

14-
# Option 3. [DISABLED] PHP 7.3
15-
# Supported until 2021-12-06
16-
#server unix:/run/php/php7.3-fpm.sock backup;
1721
}

0 commit comments

Comments
 (0)