mongoose/docs/http/cgi.md
Ruslan Valiullin 6926655513 add to cgi doc note about zombies
PUBLISHED_FROM=fb1796f11a595befd160bd5ab1088b6e39f16757
2017-04-15 06:44:43 +00:00

1.4 KiB

title
CGI

CGI is a simple mechanism to generate dynamic content. In order to use CGI, call mg_serve_http() function and use .cgi file extension for the CGI files. To be more precise, all files that match cgi_file_pattern setting in the struct mg_serve_http_opts are treated as CGI. If cgi_file_pattern is NULL, **.cgi$|**.php$ is used.

If Mongoose recognises a file as CGI, it executes it, and sends the output back to the client. Therefore, CGI file must be executable. Mongoose honours the shebang line - see http://en.wikipedia.org/wiki/Shebang_(Unix).

For example, if both PHP and Perl CGIs are used, then #!/path/to/php-cgi.exe` and #!/path/to/perl.exe` must be the first lines of the respective CGI scripts.

It is possible to hardcode the path to the CGI interpreter for all CGI scripts and disregard the shebang line. To do that, set the cgi_interpreter setting in the struct mg_serve_http_opts.

NOTE: PHP scripts must use php-cgi.exe as CGI interpreter, not php.exe. Example:

  opts.cgi_interpreter = "C:\\ruby\\ruby.exe";

NOTE: In the CGI handler we don't use explicitly a system call waitpid() for reaping zombie processes. Instead, we set the SIGCHLD handler to SIG_IGN. It will cause zombie processes to be reaped automatically. CAUTION: not all OSes (e.g. QNX) reap zombies if SIGCHLD is ignored.