Skip to content

Instantly share code, notes, and snippets.

@hiboma
Created January 24, 2012 13:02
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save hiboma/1670088 to your computer and use it in GitHub Desktop.
Save hiboma/1670088 to your computer and use it in GitHub Desktop.
Nginx+Lua+Redis で動的upstream
worker_processes 1;
error_log /dev/stderr debug;
events {
worker_connections 256;
}
http {
server {
listen 8888;
server_name localhost;
location / {
set $upstream "";
rewrite_by_lua '
local res = ngx.location.capture("/redis")
if res.status == ngx.HTTP_OK then
ngx.var.upstream = res.body
else
ngx.exit(ngx.HTTP_FORBIDDEN)
end
';
proxy_pass http://$upstream;
}
location /redis {
internal;
set $redis_key $host;
redis_pass 127.0.0.1:6379;
default_type text/html;
}
}
}
@kujiy
Copy link

kujiy commented Jul 22, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment