Searched refs:cgi (Results 1 – 25 of 30) sorted by relevance
12
| /mOS-networking-stack/samples/lighttpd-1.4.32/doc/outdated/ |
| H A D | cgi.txt | 14 The cgi module provides a CGI-conforming interface. 17 :keywords: lighttpd, cgi 30 cgi.assign 36 cgi.assign = ( ".pl" => "/usr/bin/perl", 37 ".cgi" => "/usr/bin/perl" ) 45 cgi.assign = ( ".sh" => "" ) 50 cgi.assign = ( "/testfile" => "" )
|
| H A D | alias.txt | 36 alias.url = ( "/cgi-bin/" => "/var/www/servers/www.example.org/cgi-bin/" )
|
| H A D | Makefile.am | 3 cgi.txt \ 41 cgi.html \
|
| H A D | fastcgi.txt | 188 The request `http://my.host.com/remote_scripts/test.cgi` will 190 "/remote_scripts/test.cgi" will be used for the SCRIPT_NAME 196 the prefix will be handled as file and /test.cgi would become 357 --enable-force-cgi-redirect \ 364 PHP 4.3.3RC2-dev (cgi-fcgi) (built: Oct 19 2003 23:19:17) 366 The important part is the (cgi-fcgi). 416 cgi.fix_pathinfo = 1 432 Why this ? the ``cgi.fix_pathinfo = 0`` would give you a working ``PATH_INFO`` 435 broken-scriptfilename. With ``cgi.fix_pathinfo = 1`` in php.ini and
|
| /mOS-networking-stack/samples/lighttpd-1.4.32/tests/docroot/www/ |
| H A D | Makefile.am | 1 EXTRA_DIST=cgi.php cgi.pl index.html index.txt phpinfo.php \ 2 redirect.php cgi-pathinfo.pl get-env.php get-server-env.php \
|
| H A D | 404.fcgi | 4 my $cgi = new CGI;
|
| H A D | 404.pl | 3 my $cgi = new CGI;
|
| H A D | Makefile.in | 341 EXTRA_DIST = cgi.php cgi.pl index.html index.txt phpinfo.php \ 342 redirect.php cgi-pathinfo.pl get-env.php get-server-env.php \
|
| /mOS-networking-stack/samples/lighttpd-1.4.32/ |
| H A D | NEWS | 48 * [libev/cgi] fix waitpid ECHILD errors in cgi with libev (fixes #2324) 61 * [*cgi] Use physical base dir (alias, userdir) as DOCUMENT_ROOT in cgi environments (fixes #2216) 130 * Add "cgi.execute-x-only" to mod_cgi, requires +x for cgi scripts (fixes #2013) 213 * mod_ssi printenv: print cgi env, add environment vars to cgi env (fixes #1713) 329 * allow digits in [s]cgi env vars (#1712) 581 * fixed broken cgi if mod_scgi is loaded 796 * fixed cgi.assign with empty handler 869 * fixed multipart handling in cgi 887 * fixed cgi-module for POST request above 4k 928 * fixed cgi for cygwin [all …]
|
| /mOS-networking-stack/samples/lighttpd-1.4.32/tests/docroot/www/go/ |
| H A D | Makefile.am | 1 EXTRA_DIST=cgi.php
|
| /mOS-networking-stack/samples/lighttpd-1.4.32/doc/config/conf.d/ |
| H A D | cgi.conf | 15 cgi.assign = ( ".pl" => "/usr/bin/perl",
|
| H A D | Makefile.am | 3 cgi.conf \
|
| /mOS-networking-stack/samples/lighttpd-1.4.32/tests/ |
| H A D | 404-handler.conf | 30 cgi.assign = (".pl" => "/usr/bin/perl" )
|
| H A D | lowercase.conf | 55 cgi.assign = ( ".pl" => "/usr/bin/perl",
|
| H A D | fastcgi-10.conf | 78 cgi.assign = ( ".pl" => "/usr/bin/perl",
|
| H A D | fastcgi-responder.conf | 102 cgi.assign = ( ".pl" => "/usr/bin/perl",
|
| H A D | fastcgi-auth.conf | 100 cgi.assign = ( ".pl" => "/usr/bin/perl",
|
| H A D | fastcgi-13.conf | 95 cgi.assign = ( ".pl" => "/usr/bin/perl",
|
| H A D | bug-12.conf | 101 cgi.assign = ( ".pl" => "/usr/bin/perl",
|
| H A D | bug-06.conf | 99 cgi.assign = ( ".pl" => "/usr/bin/perl",
|
| H A D | proxy.conf | 80 cgi.assign = ( ".pl" => "/usr/bin/perl",
|
| H A D | SConscript | 24 mod-cgi.t \
|
| H A D | Makefile.am | 39 mod-cgi.t \
|
| H A D | lighttpd.conf | 91 cgi.assign = ( ".pl" => "/usr/bin/perl",
|
| /mOS-networking-stack/samples/lighttpd-1.4.32/src/ |
| H A D | mod_cgi.c | 57 array *cgi; member 130 array_free(s->cgi); in FREE_FUNC() 168 s->cgi = array_init(); in SETDEFAULTS_FUNC() 171 cv[0].destination = s->cgi; in SETDEFAULTS_FUNC() 1212 PATCH(cgi); in mod_cgi_patch_connection() 1228 PATCH(cgi); in mod_cgi_patch_connection() 1257 for (k = 0; k < p->conf.cgi->used; k++) { in URIHANDLER_FUNC() 1258 data_string *ds = (data_string *)p->conf.cgi->data[k]; in URIHANDLER_FUNC()
|
12