Nginx 反向代理实现 Spring Cloud Gateway 访问
1.安装 Nginx
在服务器上安装 Nginx,根据操作系统的不同可以使用包管理工具如 apt-get、yum 等进行安装。
2.配置 Nginx 反向代理
在 Nginx 的配置文件 (通常是 /etc/nginx/conf.d/default.conf) 中添加如下配置:
server {
listen 80;
server_name gateway.example.com;
location / {
    proxy_pass http://spring-cloud-gateway:8080;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
- 上述配置中,我们监听了 - 80端口,并将- gateway.example.com域名映射到了- Spring Cloud Gateway服务。
- proxy_pass指定了 Spring Cloud Gateway 服务的内网- URL,这里假设服务名为 spring-cloud-gateway。
- 其他几个 - proxy_set_header指令用于传递客户端的- 请求头信息。
3.启动 Nginx
保存配置文件后,重新加载 Nginx 配置或重启 Nginx 服务,使配置生效。
4.部署 Spring Cloud Gateway
- 将 Spring Cloud Gateway 服务部署到内网环境中,确保 Nginx 能够访问到该服务。 
- 在 Spring Cloud Gateway 的 application.yml 文件中,设置应用监听的端口为 8080。 
5.测试访问
在客户端浏览器中访问 http://gateway.example.com,请求会被 Nginx 反向代理转发到内网的 Spring Cloud Gateway 服务。
如果一切正常,客户端就可以通过 http://gateway.example.com 访问 Spring Cloud Gateway 服务了。
通过这种方式,我们实现了 Nginx 反向代理 Spring Cloud Gateway 的访问。主要优点如下:
1.客户端访问时无需指定端口号,使用标准的 HTTP/HTTPS 端口。
2.Nginx 可以提供负载均衡、SSL 终止等额外功能。
3.Spring Cloud Gateway 服务可以部署在内网环境,提高安全性。
总之,这种基于 Nginx 反向代理的方式是一种常见的 Spring Cloud Gateway 部署方式,可以很好地满足生产环境的需求。