FreeBSD 12.1 + Apache 2.4.x + PHP 7.2.x (Multiple TLD's + Multiple Sub-domains) w/ httpd.conf

StreetDancer

for tcp based proxy in nginx it would be as you have it now
Code:
fastcgi_pass 127.0.0.1:9001;
the unix socket equivalent would be this, just replace the php72-fpm.sock with one of yours
Code:
fastcgi_pass unix:/var/run/php72-fpm.sock;
anlashok,

Thank you for the NGINX verification & variation SetHandler.
 
Back
Top