微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

与远程服务器进行SSL握手期间的httpd代理错误

如何解决与远程服务器进行SSL握手期间的httpd代理错误

我遇到了这些错误

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin: 10px;
  padding: 20px;
  width: 100%;
  min-width: 100px;
  max-height: 400px;
  background-color: white(0,255,0.5);
  z-index: -1;
}

.product>img {
  max-height: 200px;
  width: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

使用此配置,但我替换了许多可以但仍然出现相同错误的选项

vhost.conf

The proxy server Could not handle the request
Reason: Error during SSL Handshake with Remote Server

vhosts-le-ssl.conf

<VirtualHost *:80>
    ServerName mydomain.org
  ProxyRequests Off
<Location />
  ProxyPass http://localhost:3000/
  ProxyPassReverse http://localhost:3000/
</Location>
RewriteEngine on
RewriteCond %{SERVER_NAME} =mydomain.org
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>

我该如何解决..?

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。