#482: Add PHP 8.2 to WO

This commit is contained in:
Janio Sarmento
2022-12-10 10:37:20 -03:00
parent 2c95e03a1e
commit a76d76ce5f
12 changed files with 556 additions and 69 deletions

View File

@@ -125,6 +125,26 @@ upstream debug81 {
server 127.0.0.1:9176;
}
#-------------------------------
# PHP 8.2
#-------------------------------
# PHP 8.2 upstream with load-balancing on two unix sockets
upstream php82 {
least_conn;
server unix:/var/run/php/php82-fpm.sock;
server unix:/var/run/php/php82-two-fpm.sock;
keepalive 5;
}
# PHP 8.2 debug
upstream debug82 {
# Debug Pool
server 127.0.0.1:9177;
}
#-------------------------------
# Netdata
#-------------------------------
@@ -156,4 +176,5 @@ upstream multiphp {
server unix:/var/run/php/php72-fpm.sock;
server unix:/var/run/php/php80-fpm.sock;
server unix:/var/run/php/php81-fpm.sock;
}
server unix:/var/run/php/php82-fpm.sock;
}