From 12729092d8f0c0c8b99f89c1bed8727bef4890d0 Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Tue, 24 Sep 2024 14:31:22 +0800 Subject: [PATCH] Update index_php_yum.py --- plugins/php-yum/index_php_yum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/php-yum/index_php_yum.py b/plugins/php-yum/index_php_yum.py index 8ade2ed75..0600580d6 100755 --- a/plugins/php-yum/index_php_yum.py +++ b/plugins/php-yum/index_php_yum.py @@ -74,7 +74,7 @@ def status(version): def getFpmAddress(version): - fpm_address = '/tmp/php-cgi-{}.sock'.format(version) + fpm_address = '/var/opt/remi/php{}/run/php-fpm/www.sock'.format(version) php_fpm_file = getFpmConfFile(version) try: content = readFile(php_fpm_file)