]> git.pld-linux.org Git - packages/php.git/blob - php-cgi.ini
- make it possible to coinstall phpXY-pdo-pgsql
[packages/php.git] / php-cgi.ini
1 ; php-cgi.ini - configuration used only for cgi 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 ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
12 ; most web servers.  Left undefined, PHP turns this on by default.  You can
13 ; turn it off here AT YOUR OWN RISK
14 ; **You CAN safely turn this off for IIS, in fact, you MUST.**
15 ; cgi.force_redirect = 1
16
17 ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
18 ; every request.
19 ; cgi.nph = 1
20
21 ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
22 ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
23 ; will look for to know it is OK to continue execution.  Setting this variable MAY
24 ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
25 ; cgi.redirect_status_env = ;
26
27 ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI.  PHP's
28 ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
29 ; what PATH_INFO is.  For more information on PATH_INFO, see the cgi specs.  Setting
30 ; this to 1 will cause PHP CGI to fix it's paths to conform to the spec.  A setting
31 ; of zero causes PHP to behave as before.  Default is 1.  You should fix your scripts
32 ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
33 ; cgi.fix_pathinfo=0
34
35 ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
36 ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
37 ; is supported by Apache. When this option is set to 1 PHP will send
38 ; RFC2616 compliant header.
39 ; Default is zero.
40 ;cgi.rfc2616_headers = 0
41
42 [Session]
43 session.save_path         = /tmp    ; argument passed to save_handler
44                                     ; in the case of files, this is the
45                                     ; path where data files are stored
This page took 0.050287 seconds and 3 git commands to generate.