we know processing part is separate from database in load balancing.
in processing i use php-fpm. i have to select a linux user and group in php-fpm pool.
If I use root as user and group for php-fpm pool, is there any security issue?
These servers are only used for running a high traffic our website. There is no other user who will host website.
; Start a new pool named 'www'.
; the variable $pool can we used in any directive and will be replaced by the
; pool name ('www' here)
[www]
user = root
group = root
listen.owner = root
listen.group = root
listen.mode = 0660