Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update php_sockets.conf #27

Merged
merged 1 commit into from
Mar 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}
Loading