Add php8.4 support

This commit is contained in:
VirtuBox
2024-12-03 14:08:19 +01:00
parent 104a5a87d2
commit 2f45853067
14 changed files with 218 additions and 31 deletions

View File

@@ -165,6 +165,26 @@ upstream debug83 {
server 127.0.0.1:9178;
}
#-------------------------------
# PHP 8.4
#-------------------------------
# PHP 8.4 upstream with load-balancing on two unix sockets
upstream php84 {
least_conn;
server unix:/var/run/php/php84-fpm.sock;
server unix:/var/run/php/php84-two-fpm.sock;
keepalive 5;
}
# PHP 8.4 debug
upstream debug83 {
# Debug Pool
server 127.0.0.1:9179;
}
#-------------------------------
# Netdata
#-------------------------------
@@ -198,4 +218,5 @@ upstream multiphp {
server unix:/var/run/php/php81-fpm.sock;
server unix:/var/run/php/php82-fpm.sock;
server unix:/var/run/php/php83-fpm.sock;
server unix:/var/run/php/php84-fpm.sock;
}