mongoose/docs/http/cgi.md
Бобби 6e3e5560d0 Move mongoose docs to https://cesanta.com/docs/
PUBLISHED_FROM=ebf5568abe82952ab2751298185a10189098013f
2017-10-16 15:18:24 +00:00

1.4 KiB

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.