मैंने स्थानीय रूप से nginx और docker कंटेनर स्थापित किया है ( https://hub.docker.com/r/phpdockerio/php72-fpm/ )
लेकिन, मैं स्थानीय nginx विन्यास में php-fpm सॉकेट तक कैसे पहुँच सकता हूँ?
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php-fpm:9000;
fastcgi_index index.php;
#include fastcgi_params;
include fastcgi.conf;
}
लेकिन, लगता php-fpm:9000
है कि काम नहीं कर रहा है।