На момент начала установки, у Вас уже должен быть установлен nginx и выключен (не удален!) в меню «возможности» apache.
1) Для начала установим сам php-fpm:
yum install php-fpm
2) Создаем файл /usr/local/ispmgr/etc/server.templ со следующим содержимым:
location / { index index.php root $root_path; try_files $uri $uri/ /index.php?q=$uri&$args; } location ~ \.php$ { root $root_path; fastcgi_pass 127.0.0.1:9000; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }