无法将 index.php 从 Nginx 容器获取到 AWS 和 Docker 上的 PHP 容器

无法将 index.php 从 Nginx 容器获取到 AWS 和 Docker 上的 PHP 容器

我已经在 AWS EC2 实例上安装了 Docker,并部署了 Nginx 和 PHP-FPM 容器。

[ec2-user@ip-172-31-80-56 ~]$ sudo docker container ls
CONTAINER ID   IMAGE                           COMMAND                  CREATED       STATUS       
PORTS                                                                            NAMES

e8cb988f47ff   jeremycanfield/php:latest       "docker-php-entrypoi…"   12 days ago   Up 12 
days   0.0.0.0:9000->9000/tcp                                                           php

8ac5a82f84f2   jeremycanfield/nginx:latest     "/docker-entrypoint.…"   2 weeks ago   Up 2 
weeks   0.0.0.0:80->80/tcp, 0.0.0.0:443->443/tcp, 0.0.0.0:18080-18085->18080-18085/tcp   nginx

http://ec2-23-22-195-223.compute-1.amazonaws.com/index.html,显示“欢迎使用 Nginx”。当我转到http://ec2-23-22-195-223.compute-1.amazonaws.com/index.php,index.php 被下载,而不是显示在网络浏览器中,浏览器显示502错误的网关

Nginx 容器中的 /etc/nginx/conf.d/default.conf 有fastcgi_pass 172.31.29.217:9000

server {
    server_name         localhost;
    index               index.php;
    listen              80;
    root                /var/www/www;

    location ~ \.php$ {
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_pass 172.31.29.217:9000;
        include fastcgi_params;
    }
}

172.31.29.217 是绑定到 EC2 实例的 eth0 接口的 IP 地址。

[ec2-user@ip-172-31-29-217 ~]$ ip a
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9001 qdisc pfifo_fast state UP group default 
qlen 1000
    link/ether 0a:4a:bb:2e:e2:41 brd ff:ff:ff:ff:ff:ff
    inet 172.31.29.217/20 brd 172.31.31.255 scope global dynamic eth0
       valid_lft 3207sec preferred_lft 3207sec
    inet6 fe80::84a:bbff:fe2e:e241/64 scope link
       valid_lft forever preferred_lft forever

PHP-FPM 容器正在监听端口 9000。

[ec2-user@ip-172-31-29-217 ~]$ sudo docker exec php grep ^listen /usr/local/etc/php-fpm.d/www.conf
listen = 127.0.0.1:9000

我重新启动 PHP 容器并验证它已启动并正在运行。

[ec2-user@ip-172-31-29-217 ~]$ sudo docker restart php
[ec2-user@ip-172-31-29-217 ~]$ sudo docker logs php
[09-Dec-2022 22:08:10] NOTICE: fpm is running, pid 1
[09-Dec-2022 22:08:10] NOTICE: ready to handle connections

使用 OpenSSL,我能够使用 172.31.29.217:9000 从 Nginx 容器建立到 PHP-FPM 容器的连接。

[ec2-user@ip-172-31-29-217 ~]$ sudo docker exec nginx openssl s_client -connect 172.31.29.217:9000
write:errno=0
CONNECTED(00000003)
---
no peer certificate available
---
No client certificate CA names sent
---
SSL handshake has read 0 bytes and written 283 bytes
Verification: OK
---
New, (NONE), Cipher is (NONE)
Secure Renegotiation IS NOT supported
Compression: NONE
Expansion: NONE
No ALPN negotiated
Early data was not sent
Verify return code: 0 (ok)
---

或者使用 Nginx 容器中的 curl,我可以连接到 172.31.29.217:9000。

[ec2-user@ip-172-31-29-217 ~]$ sudo docker exec nginx curl --silent 172.31.29.217:9000 -v
*   Trying 172.31.29.217:9000...
* Connected to 172.31.29.217 (172.31.29.217) port 9000 (#0)
> GET / HTTP/1.1
> Host: 172.31.29.217:9000
> User-Agent: curl/7.74.0
> Accept: */*
>
* Empty reply from server
* Connection #0 to host 172.31.29.217 left intact

当我去http://ec2-23-22-195-223.compute-1.amazonaws.com/index.php,php 容器日志中没有出现任何事件,就好像表明 index.php 的请求没有从 Nginx 容器转发到 PHP 容器。

[ec2-user@ip-172-31-29-217 ~]$ sudo docker logs php --tail=2
[09-Dec-2022 22:08:10] NOTICE: fpm is running, pid 1
[09-Dec-2022 22:08:10] NOTICE: ready to handle connections

值得注意的是,当我在自家实验室中设置类似的 Docker 服务器时,没有遇到此问题。index.php 页面在我家实验室中完美加载。

我不知道我的下一步行动是什么。

答案1

您的PHP-FPMdockerphp容器配置为监听,127.0.0.1因此它无法响应容器外部的外部请求。除了容器之外,您还有另一个配置文件,/usr/local/etc/php-fpm.d/www.conf或者系统中php有其他程序正在监听端口(例如安装在主机系统本身上)。您可以使用检查监听端口。还要检查您的 docker 端口映射。9000php-fpm9000ss -nlp |grep :9000

此外,opensslcurl端口的连接9000无关。端口9000使用FastCGI协议,而不是TLSHTTP。要测试FastCGI连接,您可以使用cgi-fcgi命令。

相关内容