首页
/ 在Solo.io Gloo中配置服务器端TLS加密通信

在Solo.io Gloo中配置服务器端TLS加密通信

2025-06-12 05:53:01作者:田桥桑Industrious

概述

在现代微服务架构中,安全通信是至关重要的环节。Solo.io Gloo作为一款功能强大的API网关,提供了完善的TLS/SSL配置能力,可以轻松实现服务器端加密通信。本文将详细介绍如何在Gloo中配置服务器端TLS,包括基础TLS设置、mTLS双向认证以及多域名SNI支持。

基础TLS配置

准备工作

在开始配置TLS之前,我们需要准备一个示例环境:

  1. 部署示例应用petstore:
kubectl apply -f https://raw.githubusercontent.com/solo-io/gloo/v1.14.x/example/petstore/petstore.yaml
  1. 验证Upstream是否创建成功:
glooctl get upstream default-petstore-8080
  1. 创建基础路由:
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功能:

  1. 当Virtual Service没有SSL/TLS配置时,默认绑定到HTTP监听器(8080端口)
  2. 添加SSL/TLS配置后,Virtual Service会自动绑定到HTTPS监听器(8443端口)
  3. 多个Virtual Service可以共享同一个监听器的SSL配置
  4. SNI机制确保客户端请求能够匹配正确的证书

可以通过以下命令查看代理配置:

glooctl get proxy -n gloo-system gateway-proxy -o yaml

最佳实践

  1. 生产环境应使用正规CA签发的证书,而非自签名证书
  2. 为每个域名配置明确的SNI域,避免证书冲突
  3. 定期轮换证书和密钥
  4. 监控证书过期时间
  5. 考虑使用证书管理器自动管理证书

通过以上步骤,您可以在Gloo Gateway中实现完整的服务器端TLS加密通信,包括基础TLS、mTLS双向认证以及多域名支持,为您的微服务架构提供安全可靠的通信保障。

登录后查看全文
热门项目推荐

热门内容推荐

最新内容推荐

项目优选

收起
openHiTLS-examplesopenHiTLS-examples
本仓将为广大高校开发者提供开源实践和创新开发平台,收集和展示openHiTLS示例代码及创新应用,欢迎大家投稿,让全世界看到您的精巧密码实现设计,也让更多人通过您的优秀成果,理解、喜爱上密码技术。
C
47
253
openHiTLSopenHiTLS
旨在打造算法先进、性能卓越、高效敏捷、安全可靠的密码套件,通过轻量级、可剪裁的软件技术架构满足各行业不同场景的多样化要求,让密码技术应用更简单,同时探索后量子等先进算法创新实践,构建密码前沿技术底座!
C
347
381
RuoYi-Vue3RuoYi-Vue3
🎉 (RuoYi)官方仓库 基于SpringBoot,Spring Security,JWT,Vue3 & Vite、Element Plus 的前后端分离权限管理系统
Vue
871
516
ohos_react_nativeohos_react_native
React Native鸿蒙化仓库
C++
179
263
openGauss-serveropenGauss-server
openGauss kernel ~ openGauss is an open source relational database management system
C++
131
184
kernelkernel
deepin linux kernel
C
22
5
nop-entropynop-entropy
Nop Platform 2.0是基于可逆计算理论实现的采用面向语言编程范式的新一代低代码开发平台,包含基于全新原理从零开始研发的GraphQL引擎、ORM引擎、工作流引擎、报表引擎、规则引擎、批处理引引擎等完整设计。nop-entropy是它的后端部分,采用java语言实现,可选择集成Spring框架或者Quarkus框架。中小企业可以免费商用
Java
7
0
Cangjie-ExamplesCangjie-Examples
本仓将收集和展示高质量的仓颉示例代码,欢迎大家投稿,让全世界看到您的妙趣设计,也让更多人通过您的编码理解和喜爱仓颉语言。
Cangjie
335
1.09 K
harmony-utilsharmony-utils
harmony-utils 一款功能丰富且极易上手的HarmonyOS工具库,借助众多实用工具类,致力于助力开发者迅速构建鸿蒙应用。其封装的工具涵盖了APP、设备、屏幕、授权、通知、线程间通信、弹框、吐司、生物认证、用户首选项、拍照、相册、扫码、文件、日志,异常捕获、字符、字符串、数字、集合、日期、随机、base64、加密、解密、JSON等一系列的功能和操作,能够满足各种不同的开发需求。
ArkTS
31
0
CangjieCommunityCangjieCommunity
为仓颉编程语言开发者打造活跃、开放、高质量的社区环境
Markdown
1.08 K
0