Created
January 24, 2012 13:02
-
-
Save hiboma/1670088 to your computer and use it in GitHub Desktop.
Nginx+Lua+Redis で動的upstream
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} | |
} | |
} |
$ curl -i http://127.0.0.1:8888/
HTTP/1.1 403 Forbidden
curl -i -H 'Host: sushi.blog.com' http://127.0.0.1:8888/
HTTP/1.1 200 OK
エラー処理とかキャッシュとかそういうのははしょってます
寿司がくいたい
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
$ redis-cli
redis 127.0.0.1:6379> set sushi.blog.com 192.168.0.1:8888
OK