我在本地安装了 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
不起作用。