- added INI setting http.force_exit which can be used to disable script termination
[m6w6/ext-http] / docs / http.ini
1 ; example INI file for pecl/http
2 ; $Id$
3
4 [http]
5 ; enable if you want to transform all errors to exceptions (PHP >= 5 only)
6 ;http.only_exceptions = 1
7
8 ; disable if you want php not to exit in case of redirects and cache hits
9 ;http.force_exit = 0
10
11 ; the hashing algorithm with wich ETags are generated
12 ; you can use mhash constants if ext/mhash is enabled, or their
13 ; literal representation if ext/http was linked against libmhash
14 ;http.etag_mode = HTTP_ETAG_MHASH_TIGER ; same as 7
15 http.etag_mode = HTTP_ETAG_MD5
16
17 ; allowed request methods
18 ; by default PHP ignores unkown request methods
19 ; PHP will exit with a response status of 405 and an Allow header
20 ; if it encounters a request method not contained in the specified list
21 ;http.allowed_methods = "HEAD, GET, POST"
22
23 ; log file for positive cache hits
24 ;http.cache_log =
25
26 ; log file for redirects
27 ;http.redirect_log =
28
29 ; log file for requests with an unallowed request method
30 ;http.allowed_methods_log =
31
32 ; composite log file (i.e. log all messages to this file)
33 ;http.composite_log =