在Solo.io Gloo中配置服务器端TLS加密通信
2025-06-12 03:42:23作者:田桥桑Industrious
概述
在现代微服务架构中,安全通信是至关重要的环节。Solo.io Gloo作为一款功能强大的API网关,提供了完善的TLS/SSL配置能力,可以轻松实现服务器端加密通信。本文将详细介绍如何在Gloo中配置服务器端TLS,包括基础TLS设置、mTLS双向认证以及多域名SNI支持。
基础TLS配置
准备工作
在开始配置TLS之前,我们需要准备一个示例环境:
- 部署示例应用petstore:
kubectl apply -f https://raw.githubusercontent.com/solo-io/gloo/v1.14.x/example/petstore/petstore.yaml
- 验证Upstream是否创建成功:
glooctl get upstream default-petstore-8080
- 创建基础路由:
glooctl add route \
--path-exact /sample-route-1 \
--dest-name default-petstore-8080 \
--prefix-rewrite /api/pets
生成证书
我们需要为服务器生成TLS证书:
openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
-keyout tls.key -out tls.crt -subj "/CN=petstore.example.com"
创建Kubernetes Secret
将证书存储为Kubernetes Secret:
kubectl create secret tls upstream-tls --key tls.key \
--cert tls.crt --namespace gloo-system
或者使用glooctl命令:
glooctl create secret tls --name upstream-tls --certchain tls.crt --keyfile tls.key
配置Virtual Service
将TLS配置应用到Virtual Service:
glooctl edit virtualservice --name default --namespace gloo-system \
--ssl-secret-name upstream-tls --ssl-secret-namespace gloo-system
验证配置
验证TLS是否生效:
curl -k $(glooctl proxy url --port https)/sample-route-1
配置mTLS双向认证
生成客户端证书
openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
-keyout mtls.key -out mtls.crt -subj "/CN=gloo.gloo-system.com"
创建包含CA的Secret
glooctl create secret tls --name downstream-mtls --certchain tls.crt --keyfile tls.key --rootca mtls.crt
更新Virtual Service配置
glooctl edit virtualservice --name default --namespace gloo-system \
--ssl-secret-name downstream-mtls --ssl-secret-namespace gloo-system
测试mTLS连接
不带客户端证书的请求会被拒绝:
curl -k $(glooctl proxy url --port https)/sample-route-1
带客户端证书的请求会成功:
curl --cert mtls.crt --key mtls.key -k $(glooctl proxy url --port https)/sample-route-1
多域名SNI支持
为第二个域名生成证书
openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
-keyout tls.key -out tls.crt -subj "/CN=animalstore.example.com"
创建第二个Secret
kubectl create secret tls animal-certs --key tls.key \
--cert tls.crt --namespace gloo-system
创建第二个Virtual Service
glooctl create virtualservice --name animal --domains animalstore.example.com
配置SNI域名
glooctl edit virtualservice --name animal --namespace gloo-system \
--ssl-secret-name animal-certs --ssl-secret-namespace gloo-system \
--ssl-sni-domains animalstore.example.com
添加路由
glooctl add route --name animal\
--path-exact /animals \
--dest-name default-petstore-8080 \
--prefix-rewrite /api/pets
测试SNI配置
curl -k --resolve animalstore.example.com:443:$(kubectl get svc -n gloo-system gateway-proxy -o=jsonpath='{.status.loadBalancer.ingress[0].ip}') https://animalstore.example.com/animals
工作原理
Gloo Gateway通过以下机制实现TLS功能:
- 当Virtual Service没有SSL/TLS配置时,默认绑定到HTTP监听器(8080端口)
- 添加SSL/TLS配置后,Virtual Service会自动绑定到HTTPS监听器(8443端口)
- 多个Virtual Service可以共享同一个监听器的SSL配置
- SNI机制确保客户端请求能够匹配正确的证书
可以通过以下命令查看代理配置:
glooctl get proxy -n gloo-system gateway-proxy -o yaml
最佳实践
- 生产环境应使用正规CA签发的证书,而非自签名证书
- 为每个域名配置明确的SNI域,避免证书冲突
- 定期轮换证书和密钥
- 监控证书过期时间
- 考虑使用证书管理器自动管理证书
通过以上步骤,您可以在Gloo Gateway中实现完整的服务器端TLS加密通信,包括基础TLS、mTLS双向认证以及多域名支持,为您的微服务架构提供安全可靠的通信保障。
登录后查看全文
热门项目推荐
kernelopenEuler内核是openEuler操作系统的核心,既是系统性能与稳定性的基石,也是连接处理器、设备与服务的桥梁。C080
baihu-dataset异构数据集“白虎”正式开源——首批开放10w+条真实机器人动作数据,构建具身智能标准化训练基座。00
mindquantumMindQuantum is a general software library supporting the development of applications for quantum computation.Python056
PaddleOCR-VLPaddleOCR-VL 是一款顶尖且资源高效的文档解析专用模型。其核心组件为 PaddleOCR-VL-0.9B,这是一款精简却功能强大的视觉语言模型(VLM)。该模型融合了 NaViT 风格的动态分辨率视觉编码器与 ERNIE-4.5-0.3B 语言模型,可实现精准的元素识别。Python00
GLM-4.7GLM-4.7上线并开源。新版本面向Coding场景强化了编码能力、长程任务规划与工具协同,并在多项主流公开基准测试中取得开源模型中的领先表现。 目前,GLM-4.7已通过BigModel.cn提供API,并在z.ai全栈开发模式中上线Skills模块,支持多模态任务的统一规划与协作。Jinja00
agent-studioopenJiuwen agent-studio提供零码、低码可视化开发和工作流编排,模型、知识库、插件等各资源管理能力TSX0131
Spark-Formalizer-X1-7BSpark-Formalizer 是由科大讯飞团队开发的专用大型语言模型,专注于数学自动形式化任务。该模型擅长将自然语言数学问题转化为精确的 Lean4 形式化语句,在形式化语句生成方面达到了业界领先水平。Python00
最新内容推荐
Python Django图书借阅管理系统:高效智能的图书馆管理解决方案 Adobe Acrobat XI Pro PDF拼版插件:提升排版效率的专业利器 深入解析Windows内核模式驱动管理器:系统驱动管理的终极利器 SteamVR 1.2.3 Unity插件:兼容Unity 2019及更低版本的VR开发终极解决方案 OMNeT++中文使用手册:网络仿真的终极指南与实用教程 RadiAnt DICOM Viewer 2021.2:专业医学影像阅片软件的全面指南 中兴e读zedx.zed文档阅读器V4.11轻量版:专业通信设备文档阅读解决方案 PADS元器件位号居中脚本:提升PCB设计效率的自动化利器 谷歌浏览器跨域插件Allow-Control-Allow-Origin:前端开发调试必备神器 IEC61850建模工具及示例资源:智能电网自动化配置的完整指南
项目优选
收起
deepin linux kernel
C
27
11
OpenHarmony documentation | OpenHarmony开发者文档
Dockerfile
464
3.45 K
Ascend Extension for PyTorch
Python
272
310
openEuler内核是openEuler操作系统的核心,既是系统性能与稳定性的基石,也是连接处理器、设备与服务的桥梁。
C
192
79
暂无简介
Dart
714
171
React Native鸿蒙化仓库
JavaScript
284
331
本项目是CANN提供的数学类基础计算算子库,实现网络在NPU上加速计算。
C++
844
424
华为昇腾面向大规模分布式训练的多模态大模型套件,支撑多模态生成、多模态理解。
Python
105
120
Nop Platform 2.0是基于可逆计算理论实现的采用面向语言编程范式的新一代低代码开发平台,包含基于全新原理从零开始研发的GraphQL引擎、ORM引擎、工作流引擎、报表引擎、规则引擎、批处理引引擎等完整设计。nop-entropy是它的后端部分,采用java语言实现,可选择集成Spring框架或者Quarkus框架。中小企业可以免费商用
Java
10
1
🎉 (RuoYi)官方仓库 基于SpringBoot,Spring Security,JWT,Vue3 & Vite、Element Plus 的前后端分离权限管理系统
Vue
1.26 K
692