syntax: post_action [ uri|off ]
default: post_action off
context: http, server, location, if-in-location
Defines a URI to sub-request upon completion of current request.
location /protected_files { internal; proxy_pass http://127.0.0.2; post_action /protected_done; } # Send the post_action request to a FastCGI backend for logging. location /protected_done { internal; fastcgi_pass 127.0.0.1:9000; }
Note: this directive "has subtleties" according to Maxim Dounin, so use at your own risk.