Lua 風味の Nginx 書き換えまたは内部リダイレクト サイクル

Lua 風味の Nginx 書き換えまたは内部リダイレクト サイクル

nginx私はとの両方の初心者ですlua。このチュートリアルに従おうとしていますhttp://leafo.net/posts/creating_an_image_server.html#インストール要件しかし、どうしてもそのnginx.conf権利を得ることができません。

同様の他の質問を確認しましたこれ問題はどこにあるのかlocation、しかしコードのどこが間違っているのかわかりません。

こちらですnginx.conf:

error_log stderr notice;
daemon off;

events { }

http {
  include /usr/local/openresty/nginx/conf/mime.types;

  server {
    listen 6789;
    lua_code_cache on;

    location @image_server {
      content_by_lua_file "serve_image.lua";
    }

    location ~ ^/images/(?<size>[^/]+)/(?<path>.*\.(?<ext>[a-z_]*))$ {
      root cache;
      try_files /$path @image_server;
    }

  }
}

そしてこれがserve_image.luaコードです

local sig, size, path, ext =

ngx.var.sig、ngx.var.size、ngx.var.path、ngx.var.ext local images_dir = "images/" -- 画像の保存場所 local cache_dir = "cache/" -- 画像がキャッシュされる場所

local function return_not_found(msg)
  ngx.status = ngx.HTTP_NOT_FOUND
  ngx.header["Content-type"] = "text/html"
  ngx.say(msg or "not found")
  ngx.exit(0)
end

local source_fname = images_dir .. path
ngx.log(ngx.STDERR, "->>>>  " .. source_fname)

-- make sure the file exists
local file = io.open(source_fname)

if not file then
  ngx.log(ngx.STDERR, "Couldn't find the input file" .. source_fname)
  return_not_found()
end

file:close()

local dest_fname = cache_dir .. "/" .. size .. "/" .. path

-- resize the image
local magick = require("magick")
magick.thumb(source_fname, size, dest_fname)

ngx.exec(ngx.var.request_uri)

サーバーを実行するとコード 500 が表示されます。

これはターミナルのエラーです

rewrite or internal redirection cycle while redirect to named location "@image_server", client: 127.0.0.1, server: , request: "GET /images/80x80/wow.png HTTP/1.1", host: "localhost:6789"

もっと経験豊富で新鮮な目で、私が間違っているところを指摘してもらえると嬉しいです。 ありがとうございます。

関連情報