Can nginx run a unix command based on url?

configuration, nginx, url

Solution

No, Nginx cannot.

Problem

Is it possible to configure nginx to run a unix command based on a url? For example: ``` http://localhost/list/usr/local ``` This runs: ``` ls /usr/local ``` Then returns the results?

Original source