nginx access_by_lua 不尊重 lua_package_path

nginx access_by_lua not respecting lua_package_path

我有一个反向nginx代理运行下面在nginx.config:

http {
  lua_package_path ";;$prefix/?.lua;?.lua;/etc/nginx/?.lua;/etc/nginx/resty/?.lua;";
}

然后在服务器中的多个位置:

 # xxx SERVICE
    location ~* ^/articles/?(.*) {

      proxy_ignore_client_abort on;

      include cors.conf;

      access_by_lua_file nginx_v4.lua;}

我运行在 /etc/nginx/ 配置了带有 nginx 和 lua 的 centos 7 以及我在 lua包路径。当我 运行 nginx 时,它可以正常导入 lua 文件(在 lua_package_path 中找到它)但是由于某种原因当我 运行 xxx 服务时它失败并显示以下内容:

> 2016/10/11 16:37:21 [notice] 19300#0: getrlimit(RLIMIT_NOFILE):
> 1024:4096 2016/10/11 16:37:21 [notice] 19301#0: start worker processes
> 2016/10/11 16:37:21 [notice] 19301#0: start worker process 19303
> 2016/10/11 16:37:25 [error] 19303#0: *1 failed to load external Lua
> file "/usr/share/nginx/nginx_v4.lua": cannot open
> /usr/share/nginx/nginx_v4.lua: No such file or directory, client:
> 10.1.104.135, server: localhost, request: "GET /content/search?filter.search_string=goog HTTP/1.1", host: "x.x.x.x"
> 2016/10/11 16:37:41 [info] 19303#0: *2 client closed connection while
> waiting for request, client: 10.1.104.135, server: 0.0.0.0:443

出于某种原因,它在 /usr/share/nginx 中查找实际上位于 /etc/nginx 中的 lua 文件:**文件“/usr/share/nginx/nginx_v4.lua” : 无法打开

/usr/share/nginx/nginx_v4.lua: No such file or directory**

知道为什么吗?在我对路径进行硬编码之前,这不起作用。

lua_package_path 是 lua 寻找库的地方,而不是 nginx 寻找 lua 文件的地方。

您可以使用 'require "nginx_v4"' 将 'access_by_lua_file' 更改为 'access_by_lua',或者您可以更改 Lua 文件的位置,或者 nginx 查找配置的路径使用'-p /path/' 启动参数.