有外网网站:https://aaa.com
公司内部无法访问外网,想通过内网域名bbb.com跳转。
结果因为证书问题,提示【此网站无法提供安全连接】,
nginx配置如下:
server {
listen 443;
server_name aaa.com;
location / {
proxy_pass https://bbb.com;
}
}
请问有其他办法吗?
相关问题
- Can ServiceStack JsonServiceClient send a get requ
- How can I prevent my Shiny App from disconnecting
- Can't configure nginx as a proxy for tomcat wi
- How to set Nginx URI to fix empty URI in redirect
- Is it possible to use HTTPS only for login in Spri
有证书反向代理没证书的没问题。
没证书反向代理有证书的就会出问题。
证书(https)。
内网不用https不就完事了
你要给aaa站点加证书
域名解析的时候好像有免费ssl证书,下载配置一下。