This file contains hidden or 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
| local image_path = ngx.var.image_path | |
| local images_dir = "/home/koheyhey/localdata/" -- where images come from | |
| 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 |