search for: xtfbjg

Displaying 2 results from an estimated 2 matches for "xtfbjg".

2018 Jul 26
2
Is decoupling Apache + PHP into separate nodes possible?
...ir InfoSec team is asking if Apache and the PHP application can run in separate nodes (3 Tier arch). To the best of my knowledge Apache + PHP (mod_php) have to be in the same node. With PHP-FPM it is conceivable to have Apache talk to PHP-FPM running on a separate node (see diagram https://goo.gl/xTfbjg). But I have not done it myself and I am not sure if it is feasible. If it is feasible then what's the best practice to distribute the *.html *.css and *.php files between the Apache + the PHP-FPM nodes and how to achieve load balance between Apache and PHP-FPM nodes. I have searched but not...
2018 Jul 26
0
Is decoupling Apache + PHP into separate nodes possible?
...pache and the PHP application can run in separate nodes (3 Tier > arch). > > To the best of my knowledge Apache + PHP (mod_php) have to be in the same node. > > With PHP-FPM it is conceivable to have Apache talk to PHP-FPM running > on a separate node (see diagram https://goo.gl/xTfbjg). > But I have not done it myself and I am not sure if it is feasible. With my Apache httpd documentation hat on ... Yes, and this is the recommended way to do it (ie, php-fpm vs mod_php). FPM lets you run the Event MPM with confidence, and that's what you *should* be running. Whereas wi...