我正在尝试将docker nginx容器连接到docker php7容器。我都已连接到专用网桥,因为我希望PHP引擎脱机。启动我的nginx容器时,出现错误:
nginx: [emerg] host not found in upstream "php7" in
etc/nginx/conf.d/default.conf:11
我的php容器命令(先运行):
docker run -d \
--name php7 \
-v /php7:/usr/local/etc \
-v /www_data:/www \
--network=priv-bridge-net \
-p 9000:9000 \
php:7.0.24-fpm
我的nginx命令:
docker run -d \
--name nginx \
-v /nginx_conf:/etc/nginx \
-v /www_data:/usr/share/nginx/html \
--network=priv-bridge-net \
nginx:1.13.5
我的nginx配置:
server {
index index.php index.html;
server_name test;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
root /usr/share/nginx/html;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php7:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
}
请帮助我弄清楚我在做什么错。谢谢!
第二个问题,我可以从php容器中删除-p 9000:9000吗,因为它与nginx服务器位于同一网桥网络上。
最佳答案
好的,所以我上面的问题是正确的答案。我只是在启动容器的顺序上遇到麻烦(我也有反向代理和其他正在使用的代理,这有点令人困惑)。
对于任何想要将docker nginx连接到docker php的人来说,这是正确的设置:
我的php容器命令(先运行):
docker run -d \
--name php7 \
-v /php7:/usr/local/etc \
-v /www_data:/www \
--network=priv-bridge-net \
-p 9000:9000 \
php:7.0.24-fpm
我的nginx命令:
docker run -d \
--name nginx \
-v /nginx_conf:/etc/nginx \
-v /www_data:/usr/share/nginx/html \
--network=priv-bridge-net \
nginx:1.13.5
我的nginx配置:
server {
index index.php index.html;
server_name test;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
root /usr/share/nginx/html;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php7:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
}
关于php - Docker Nginx在私有(private)Docker网络上连接到PHP-FPM,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46515440/