I used own hostname and set web type proxy, access the page show :Error 502 Request rejected"
I logged in hosting via SSH and check the running php-fpm processes as below result.
Can you help to solve this problem?
Server:leoheart
ps aux | grep php-fpm
leoheart 88811 0.0 0.0 12888 2388 454 SN+ 19:24 0:00.00 grep php-fpm
[leoheart@s6]:$ ps -ef | grep php-fpm
[leoheart@s6]:$ ps -u $USER -f | grep php-fpm
ps: illegal argument: leoheart
usage: ps [--libxo] [-aCcdefHhjlmrSTuvwXxZ] [-O fmt | -o fmt]
[-G gid[,gid...]] [-J jid[,jid...]] [-M core] [-N system]
[-p pid[,pid...]] [-t tty[,tty...]] [-U user[,user...]]
[-D up | down | both]
ps [--libxo] -L
[leoheart@s6]:$ pgrep -l php-fpm
[leoheart@s6]:$ ps aux | grep php
leoheart 99001 0.0 0.0 12888 2380 454 SN+ 19:25 0:00.00 grep php
[leoheart@s6]:$ kill -9 99001
-bash: kill: (99001) - No such process
[leoheart@s6]:$ ps aux | grep php
leoheart 14659 0.0 0.0 12888 2380 454 SN+ 19:28 0:00.00 grep php
[leoheart@s6]:$ php -v
PHP 8.1.29 (cli) (built: Jun 8 2024 19:41:10) (NTS)
Copyright (c) The PHP Group
Zend Engine v4.1.29, Copyright (c) Zend Technologies
with the ionCube PHP Loader v13.0.2, Copyright (c) 2002-2023, by ionCube Ltd.
with Zend OPcache v8.1.29, Copyright (c), by Zend Technologies
[leoheart@s6]:$ php -i | grep php-fpm
[leoheart@s6]:$ ls /etc/systemd/system/ | grep php
ls: /etc/systemd/system/: No such file or directory
[leoheart@s6]:$ ps aux | grep php
leoheart 21319 0.0 0.0 12888 2380 454 SN+ 19:29 0:00.00 grep php
Thank you