- correct package name
[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 = 0
7
8 ; the hashing algorithm with wich ETags are generated
9 ; you can use mhash constants if ext/mhash is enabled, or their
10 ; literal representation if ext/http was linked against libmhash
11 ;http.etag_mode = MHASH_TIGER ; same as 7
12 http.etag_mode = HTTP_ETAG_MD5
13
14 ; allowed request methods
15 ; by default PHP ignores unkown request methods
16 ; PHP will exit with a response status of 405 and an Allow header
17 ; if it encounters a request method not contained in the specified list
18 ;http.allowed_methods = "HEAD, GET, POST"
19
20 ; log file for positive cache hits
21 ;http.cache_log =
22
23 ; log file for redirects
24 ;http.redirect_log =
25
26 ; log file for requests with an unallowed request method
27 ;http.allowed_methods_log =
28
29 ; composite log file (i.e. log all messages to this file)
30 ;http.composite_log =