在 proxy_pass nginx 中使用环境变量

在 proxy_pass nginx 中使用环境变量

我有一个 nginx 容器,我想将 api 调用转发到另一台服务器。我想从 Docker Compose 传入环境变量,以便能够更改站点,而无需重建 Docker 映像。

我的设置:

#docker-compose.yml

services:
  web:
    image: myimage
    environment:
      - SITE_URL: my-website.com
      - API_URL: api-site.com

在 nginx.conf 中,我使用“modules/ngx_http_perl_module.so”中的 perl_set 来加载环境变量。

#default.conf

server {
    listen 80;
    listen [::]:80;
    server_name $site_url;

    location / {
       return 301 https://$host$request_uri;
    }

}

server {
    listen 443 ssl http2;
    listen [::]:443 ssl http2;
    server_name $site_url;
    charset utf-8;

    location / {
        add_header Cache-Control 'no-store';
        add_header Cache-Control 'no-cache';
        root   /usr/share/nginx/html;
        index  index.html index.htm;
        try_files $uri /index.html;
    }

    location /api/ {
        resolver 127.0.0.11 [::1];
        proxy_pass https://$api_url/api/;
    }

我尝试遵循这个问题

如果我做:

location /api/ {
    resolver 127.0.0.11 [::1];
    set $api_test  https://api-site.com$uri$is_args$args;
    proxy_pass $api_test;
}

它有效,我可以使用 $api_test 作为 proxy_pass 中的变量。但即使我执行 https://$api_url$uri$is_args$args,我也无法使用 api_url

任何建议将不胜感激!

相关内容