Nginx重写到root下的子文件夹

时间:2017-09-17 20:39:50

标签: php symfony docker nginx docker-compose

我有一些微服务由docker在后端专用网络中运行而想要设置由nginx管理的动态路由,以便它根据URI选择微服务。我有三个问题:

  1. 我需要nginx从URI中路径的第一段获取fastcgi_pass指令的域名,因此语句fastcgi_pass app:9000;中的“app”应来自此处: https://example.com/app/foo/bar。如果URI中的URI为https://example.com/another-app/foo/bar,则该指令看起来像fastcgi_pass another-app:9000;这是否可以动态,或者我必须为每个FastCGI服务器创建一个单独的位置?

    < / LI>
  2. 我还需要它根据相同的第一个URI路径的段重写到根目录下的文件夹。我写了一个配置,但得到404错误。我是nginx的新手,只是注意到nginx和php-fpm容器中的路径不匹配。 404错误可以与此事实相关吗?

  3. 这种路由是否可行(有关详细信息,请参阅下面的配置)?另一个选择是为每个微服务创建一个单独的位置,但我不希望每次添加或删除微服务时都更改此配置。

  4. 这是我的配置:

    server {
        server_name _;
        root /services;
    
        #rewrite to the subfolder under root depending on the first section in the path
        rewrite ^/(\w+)(/|$) /$1/app_dev.php$is_args$args last;
    
        location / {
            # try to serve file directly, fallback to app.php
             try_files $uri /app_dev.php$is_args$args;
        }
    
        location ~ ^/(\w+)/(app_dev|config)\.php(/|$) {
        #further rewrite to the /web subfolder with the front controller
            rewrite ^/(\w+)/(app_dev|config)\.php(/|$) /$1/web/$2.php$is_args$args break;
    
            fastcgi_pass media:9000;
            fastcgi_split_path_info ^(.+\.php)(/.*)$;
            include fastcgi_params;
    
            fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
            fastcgi_param DOCUMENT_ROOT $realpath_root;
        }
    
        location ~ \.php$ {
            return 404;
        }
    
        error_log  /var/log/nginx/error.log notice;
        access_log /var/log/nginx/access.log;
        rewrite_log on;
    }
    

    这是日志:

    backend_1   | 2017/09/17 20:03:54 [error] 8#8: *1 open() "/usr/share/nginx/html/media" failed (2: No such file or directory), client: 172.25.0.1, server: localhost, request: "GET /media HTTP/1.1", host: "localhost:8082"
    backend_1   | 172.25.0.1 - - [17/Sep/2017:20:03:54 +0000] "GET /media HTTP/1.1" 404 571 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36" "-"
    

    还有一个问题是我没有看到任何重写日志,猜测它可能与这两个位置都不匹配的事实有关。

2 个答案:

答案 0 :(得分:1)

所以这可以在单个位置块本身

location ~ ^/(?P<app>\w+)/(app_dev|config)\.php(/|$) {
#further rewrite to the /web subfolder with the front controller
    rewrite ^/(\w+)/(app_dev|config)\.php(/|$) /$1/web/$2.php$is_args$args break;

    fastcgi_pass $app:9000;
    fastcgi_split_path_info ^(.+\.php)(/.*)$;
    include fastcgi_params;

    fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
    fastcgi_param DOCUMENT_ROOT $realpath_root;
}

答案 1 :(得分:0)

我提出了以下nginx配置,允许将请求路由到不同docker容器中的应用程序。感谢@TarunLalwani提示:

server {
    server_name _;

    location ~ ^/(?P<service>\w+)(/|$) {
        root /services/$service/web;

        rewrite ^ /app_dev.php$is_args$args break;

        resolver 127.0.0.11;
        fastcgi_pass $service:9000;
        fastcgi_split_path_info ^(.+\.php)(/.*)$;
        include fastcgi_params;

        fastcgi_param SCRIPT_FILENAME /app/web/app_dev.php;
        fastcgi_param DOCUMENT_ROOT /app/web;
    }

    location ~ \.php$ {
        return 404;
    }

    error_log  /var/log/nginx/error.log debug;
    access_log /var/log/nginx/access.log;
    rewrite_log on;
}

应用程序路由还需要一个与微服务名称匹配的前缀,我已将其添加到文件app/config/routing.yml中(我正在使用Symfony):

app:
    resource: '@AppBundle/Controller/'
    type: annotation
    prefix: /media

微服务的代码安装在应用程序容器的/ services目录下的nginx容器中。 nginx容器和应用程序容器中的绝对路径不匹配,因此使用fastcgi params进行映射。