With apache ,I just put my binary under cgi-bin
,how about nginx?
Does it support cgi
at all?
Nginx does not support CGI, because it does not spawn external processes. This is a design decision: Nginx is a high-performance web server and spawning an external process is rather expensive operation.