> *) Feature: the ngx_http_secure_link_module. > Is it possible to proxy the request? I'd like to do something like this: -- location /dl/ secure_link_secret lhm; if ($secure_link = "") { return 403; } } proxy_pass http://192.168.0.10:3000; rewrite ^ $secure_link break; --