]> git.pld-linux.org Git - packages/php.git/blame - php-cgi-fcgi.ini
This commit was manufactured by cvs2git to create branch 'DEVEL'.
[packages/php.git] / php-cgi-fcgi.ini
CommitLineData
c0240cb1 1; php-cgi-fcgi.ini - configuration used only for cgi-fcgi SAPI
2;
3; Please note that, unlikely in original php distributions, this file
4; is read AFTER (not instead of) reading global /etc/php/php.ini.
5;
6; It allows you to control global settings for all SAPIs in one place
7; and override some settings in SAPI-specific files without need of
8; copying whole large php.ini.
9
10[PHP]
11; Disable logging through FastCGI connection
12; See http://bugs.php.net/bug.php?id=28074
13; fastcgi.logging = 0
14
15; cgi.force_redirect is necessary to provide security running PHP as a CGI under
16; most web servers. Left undefined, PHP turns this on by default. You can
17; turn it off here AT YOUR OWN RISK
18; **You CAN safely turn this off for IIS, in fact, you MUST.**
19; cgi.force_redirect = 1
20
21; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
22; every request.
23; cgi.nph = 1
24
25; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
26; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
27; will look for to know it is OK to continue execution. Setting this variable MAY
28; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
29; cgi.redirect_status_env = ;
30
31; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
32; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
33; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
34; this to 1 will cause PHP CGI to fix it's paths to conform to the spec. A setting
35; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
36; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
37cgi.fix_pathinfo=1
38
39; cgi.rfc2616_headers configuration option tells PHP what type of headers to
40; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
41; is supported by Apache. When this option is set to 1 PHP will send
42; RFC2616 compliant header.
43; Default is zero.
44;cgi.rfc2616_headers = 0
45
46[Session]
47session.save_path = /tmp ; argument passed to save_handler
48 ; in the case of files, this is the
49 ; path where data files are stored
50
This page took 0.040317 seconds and 4 git commands to generate.