Portainer:客户端向 HTTPS 服务器发送 HTTP 请求 - 尽管 URL 为 https://

问题描述 投票:0回答:3

我对主题服务器配置还很陌生,现在我在访问具有 ssl 证书的容器时遇到了问题。

我的设置是什么:

我有一个带有 docker 的树莓派。连接到端口 80 和 443 的容器是反向代理,它将传入的子域定向到不同的其他容器。 例子: webserver.my-domain.com 通向 IP 192.168.178.69:8080。我通过此配置将其存档在文件夹中

sites-enabled

<VirtualHost *:80>
 ServerName webserver.my-domain.com
 ProxyPreserveHost On 
 DocumentRoot /var/www/html
 ProxyPass /.well-known !
 ProxyPass / http://192.168.178.69:8080/
 ProxyPassReverse / http://192.168.178.69:8080/
RewriteEngine on
RewriteCond %{SERVER_NAME} =webserver.my-domain.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>

我还在反向代理容器内创建了一个让我们加密的证书。这创建了一个附加文件

webserver-le-ssl.conf
:

<IfModule mod_ssl.c>
<VirtualHost *:443>
 ServerName webserver.my-domain.com
 ProxyPreserveHost On 
 DocumentRoot /var/www/html
 ProxyPass /.well-known !
 ProxyPass / http://192.168.178.69:8080/
 ProxyPassReverse / http://192.168.178.69:8080/

SSLCertificateFile /etc/letsencrypt/live/my-domain.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/my-domain.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>

到目前为止一切顺利。如果我尝试 URL

https://webserver.my-domain.com
,我的内容就可用。

我的问题是什么

我使用 Portainer 来管理我的 docker 容器,并且我希望通过

portainer.my-domain.com
可以使用 Portainer。 这是
sites-enabled
内部的 portainer 配置:

<VirtualHost *:80>
 ServerName portainer.my-domain.com
 ProxyPreserveHost On 
 DocumentRoot /var/www/html
 ProxyPass /.well-known !
 ProxyPass / http://192.168.178.69:9443/
 ProxyPassReverse / http://192.168.178.69:9443/
RewriteEngine on
RewriteCond %{SERVER_NAME} =portainer.my-domain.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>

还有 ssl 配置:

<IfModule mod_ssl.c>
<VirtualHost *:443>
 ServerName portainer.my-domain.com
 ProxyPreserveHost On 
 DocumentRoot /var/www/html
 ProxyPass /.well-known !
 ProxyPass / http://192.168.178.69:9443/
 ProxyPassReverse / http://192.168.178.69:9443/

SSLCertificateFile /etc/letsencrypt/live/my-domain.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/my-domain.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>

如果我打电话

192.168.178.69:9443/
我可以毫无问题地到达集装箱。 但如果我尝试访问 URL
portainer.my-domain.com
我刚刚收到消息:

Client sent an HTTP request to an HTTPS server.

但是在URL中显示:

https://portainer.my-domain.com/
。 所以我不明白为什么会有 HTTP 请求,即使我的浏览器显示连接是 https。

有人可以向我解释一下这个问题并告诉我如何解决这个问题吗?

更新:我的解决方案 经过多次尝试,我找到了解决方案: 当我将反向代理和 portainer 作为 docker 容器运行时,我使用 docker-compose 将这两个容器放入网络中:

version: "3.4"

services:
  apache:
    build:
      context: .
      dockerfile: Dockerfile
    ports:
      - "80:80"
      - "443:443"
    volumes:
      - /home/pi/reverse-proxy/:/etc/apache2
    networks:
      - homeserver

  portainer:
    image: portainer/portainer-ce:latest
    ports:
      - "8000:8000"
      - "9000:9000"
      - "9443:9443"
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - portainer_data:/data
    networks:
      - homeserver

networks:
  homeserver:

volumes:
  portainer_data:

apache2的体积是

/etc/apache2
的完整config文件夹。之后我将 ProxyPass 的 IP 更改为容器的名称:

 ProxyPass / http://reverse-proxy_portainer_1:9000/
 ProxyPassReverse / http://reverse-proxy_portainer_1:9000/

经过此更改后,它起作用了。

docker apache ssl portainer
3个回答
4
投票

我在 Apache2 代理后面使用 Portainer 2.13.1 时遇到了同样的问题。我通过运行图像并启用端口 9000(Portainer 的 HTTP 端口)选项来解决这个问题。这假设您将在外部阻止端口 9000,并且只能通过受 HTTPS 保护的代理访问它。这是我的命令:

docker run -d -p 9000:9000 -p 8000:8000 -p 9443:9443 \
   --name portainer \
   --restart=always \
   -v /var/run/docker.sock:/var/run/docker.sock \
   -v portainer_data:/data 
   portainer/portainer-ce:latest

我的 VirtualHost 文件然后指向端口 9000,如下所示:

<IfModule mod_ssl.c>
    <VirtualHost *:443>

            ProxyPreserveHost On
            Proxyrequests Off

            ServerName docker.<domain.tld>
            ServerAdmin admin@<domain.tld>

            ProxyPass / http://127.0.0.1:9000/
            ProxyPassReverse / http://127.0.0.1:9000/

            ErrorLog ${APACHE_LOG_DIR}/portainer-error.log
            CustomLog ${APACHE_LOG_DIR}/portainer-access.log combined

            SSLCertificateFile /etc/letsencrypt/live/docker.<domain.tld>/fullchain.pem
            SSLCertificateKeyFile /etc/letsencrypt/live/docker.<domain.tld>/privkey.pem
            Include /etc/letsencrypt/options-ssl-apache.conf

    </VirtualHost>

确保使用 Linux 中的 ufw 等工具无法从外部访问端口 8000、9000 和 9443。


2
投票

所以根据你的问题,这似乎是有效的

ProxyPass / http://192.168.178.69:8080/

但这并不:

ProxyPass / http://192.168.178.69:9443/

请注意,在这两种情况下,即使涉及不同的端口,也都使用普通的 http:// 协议。端口号 9443 表明您应该使用 https:// 而不是 http:// 。如果是这种情况,这将解释您收到的错误消息:由于将协议设置为 http:// 而不是 https://,因此发送了普通 HTTP 请求。

但是在网址中显示:

https://portainer.my-domain.com/

这里的协议与客户端和 nginx 之间的连接有关,而不是 nginx 和内部服务器之间的连接。后一种取决于 ProxyPass URL 中给出的协议。


0
投票

我也有同样的信息: 经过研究,我解决了这个问题: 我的旧网址:http://IP:9443 我的新网址:https://IP:9443(已解决) 让我们尝试一下您的情况。

© www.soinside.com 2019 - 2024. All rights reserved.