为微服务 API 网关配置 Nginx

Posted

技术标签:

【中文标题】为微服务 API 网关配置 Nginx【英文标题】:Configuration Nginx for Microservices Api-Gateway 【发布时间】:2021-01-01 01:36:40 【问题描述】:

我想用 nginx 将请求代理到当前的网络接口主机名,例如:

url /catalog/categories/... 代理到主机名 catalog:8080 与 url /categories/... url /vitrine/products/... 代理到主机名 vitrine:8080 与 url /products/...

有什么想法吗?

【问题讨论】:

【参考方案1】:

配置应如下所示:

    http 
            ...    
            server 
                    listen 80;
                    server_name yourdomain;
    
                    set $mycatalog catalog:8080;
                    set $myvitrine vitrine:8080;
            
        
            location ~ ^/catalog/categories/(.*)$ 
                    proxy_set_header Host $host:$server_port;
                    proxy_pass http://$mycatalog/categories/$1$is_args$args;
            

            location ~ ^/vitrine/products/(.*)$ 
                    proxy_set_header Host $host:$server_port;
                    proxy_pass http://$myvitrine/products/$1$is_args$args;
            
    

【讨论】:

以上是关于为微服务 API 网关配置 Nginx的主要内容,如果未能解决你的问题,请参考以下文章

微服务之API网关:Kong:概要与安装

微服务架构为何需要搭配API网关?

为什么微服务需要API网关?

API 网关在微服务架构中处理 Web 服务

如何创建 API 网关切换到微服务架构

用于事件驱动架构的 API 网关