skip to Main Content

How to serve Redis key with Nginx?

I have all my JSON files located in Redis cache. I want to get it served through Nginx. # redis-cli -h redis-master redis-master:6379> get "zips/80202.json" "{"zipCode":"80202","City":"DENVER","StateCode":"CO"}" I would like to request the url to be like, http://nginx-host/zips/80202.json where nginx-host and…

VIEW QUESTION
Back To Top
Search