Nexus使用nginx代理实现支持HTTPS协议

Halona ·
更新时间:2024-09-20
· 813 次阅读

背景

公司全部网站需要支持 HTTPS 协议,在阿里云负载均衡配置 SSL 证书后,导致 Nexus 的 HTTPS 访问出错。

网站访问路径: 域名解析到阿里云的负载均衡,负载均衡配置 80 端口强转 443 端口,443 端口配置 SSL 证书,并转发到内网 nginx,内网的 nginx 再代理 Nexus 服务。

解决

浏览器 HTTPS 访问 Nexus 的 Console 报错信息:

报错信息大致意思是:HTTPS 访问的页面上不允许出现 HTTP 请求。

解决方法: 在 nginx 配置文件增加 “proxy_set_header X-Forwarded-Proto https;” ,这样 nginx 在转发时就使用 HTTPS 协议。

nginx.conf 中的 nexus 配置内容:

location ^~ /nexus { proxy_pass http://x.x.x.x:8080/nexus; sendfile off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto https; # 转发时使用https协议 proxy_max_temp_file_size 0; # This is the maximum upload size client_max_body_size 20m; client_body_buffer_size 128k; proxy_connect_timeout 90; proxy_send_timeout 90; proxy_read_timeout 90; proxy_temp_file_write_size 64k; # Required for new HTTP-based CLI proxy_http_version 1.1; proxy_request_buffering off; proxy_buffering off; # Required for HTTP-based CLI to work over SSL } 您可能感兴趣的文章:使用Nginx实现301跳转至https的根域名示例代码Nginx 域名SSL证书配置(网站 http 升级为 https)Springboot单体架构http请求转换https请求来支持微信小程序调用接口Spring Boot项目如何同时支持HTTP和HTTPS协议的实现Nginx http升级到https的完整步骤nginx配置SSL证书实现https服务的方法详解Spring框架下向异步线程传递HttpServletRequest参数的坑



https nexus Nginx

需要 登录 后方可回复, 如果你还没有账号请 注册新账号