- add ob_(deflate|inflate)handler
[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 (MD5, SHA1, CRC32B)
12 ; if ext/hash is available, this can be set to any hash algorithm ext/hash supports
13 ; MD5 is the default and fallback algorithm
14 http.etag_mode = "MD5"
15
16 ; allowed request methods
17 ; by default PHP ignores unkown request methods
18 ; PHP will exit with a response status of 405 and an Allow header
19 ; if it encounters a request method not contained in the specified list
20 ;http.allowed_methods = "HEAD, GET, POST"
21
22 ; log file for positive cache hits
23 ;http.cache_log =
24
25 ; log file for redirects
26 ;http.redirect_log =
27
28 ; log file for requests with an unallowed request method
29 ;http.allowed_methods_log =
30
31 ; composite log file (i.e. log all messages to this file)
32 ;http.composite_log =
33
34 ; automatically deflate content if requested/supported by client
35 ;http.ob_deflate_auto = 1
36 ;http.ob_deflate_flags = HTTP_DEFLATE_LEVEL_DEF
37
38 ; automatically inflate compressed content
39 ;http.ob_inflate_auto = 0
40 ;http.ob_inflate_flags =