gpt4 book ai didi

apache - 通过 apache 将出站 http 调用转换为 https

转载 作者:太空宇宙 更新时间:2023-11-03 13:00:49 24 4
gpt4 key购买 nike

我们老化的 WAS 应用程序服务器存在问题,空白的 ssl 证书的长度将不支持它,并且第三方不会更改那里的证书,这很公平。

那么是否有可能让我们的应用服务器向第三方发出 http 调用,但我们的 apache 网络服务器将请求重写为 https,然后第三方可以通过 https 响应,但我们的 apache 网络服务器将再次重写此请求回到 http 让我们的应用服务器开心?

最佳答案

我会考虑 mod_proxy。 take a look here

像 should 这样的东西应该能满足你的需求:

<VirtualHost *:443>
ServerName domain.tld
ServerAlias www.domain.tld

... ssl and cert statements

ProxyPass / http://new.domain.tld/
ProxyPassReverse / http://new.domain.tld/
</VirtualHost>

如果你需要它,反之亦然:

<VirtualHost *:80>
ServerName domain.tld
ServerAlias www.domain.tld

SSLProxyEngine On
ProxyPass / https://new.domain.tld/
ProxyPassReverse / https://new.domain.tld/

</VirtualHost>

关于apache - 通过 apache 将出站 http 调用转换为 https,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34038087/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com