Logoj0ke.net Open Build Service > Projects > internetx:php5:5.6.24:extensions > php5-pecl_http > http-2.4.3.ini
Sign Up | Log In

File http-2.4.3.ini of Package php5-pecl_http

 
1
; example INI file for pecl/http
2
; $Id: http.ini,v 1.11 2007/02/09 14:19:40 mike Exp $
3
4
[http]
5
6
extension = raphf.so
7
extension = propro.so
8
extension = http.so
9
10
; enable if you want to transform all errors to exceptions (PHP >= 5 only)
11
;http.only_exceptions = 1
12
13
; disable if you don't want php to exit in case of redirects and cache hits;
14
; a "NULL" output handler will be started instead, which discards all output
15
;http.force_exit = 0
16
17
; disable if you don't want 404 Not found status messages being sent,
18
; if a file attempted to be sent with http_send_file() etc. cannot be found
19
;http.send.not_found_404 = 0
20
21
; the hashing algorithm with wich ETags are generated (MD5, SHA1, CRC32B);
22
; if ext/hash is available, this can be set to any hash algorithm ext/hash supports
23
; MD5 is the default and fallback algorithm
24
;http.etag.mode = "MD5"
25
26
; allowed request methods
27
; by default PHP ignores unkown request methods
28
; PHP will exit with a response status of 405 and an Allow header
29
; if it encounters a request method not contained in the specified list
30
;http.request.methods.allowed = "HEAD, GET, POST"
31
32
; custom request methods
33
;http.request.methods.custom = "KICK, BANN"
34
35
; log file for positive cache hits
36
;http.log.cache =
37
38
; log file for redirects
39
;http.log.redirect =
40
41
; log file for responses with http_send_file() etc. where the file's not been found
42
;http.log.not_found =
43
44
; log file for requests with an unallowed request method
45
;http.log.allowed_methods =
46
47
; composite log file (i.e. log all messages to this file)
48
;http.log.composite =
49
50
; automatically deflate content if requested/supported by client
51
;http.send.deflate.start_auto = 1
52
;http.send.deflate.start_flags = HTTP_DEFLATE_LEVEL_DEF
53
54
; automatically inflate sent content
55
;http.send.inflate.start_auto = 0
56
;http.send.inflate.start_flags =
57
58
; global HttpRequestDataShare settings
59
;http.request.datashare.cookie = 0
60
;http.request.datashare.dns = 1
61
62
; limit of idle persistent handles per provider
63
;http.persistent.handles.limit = -1
64
65
; default ident of persistent handles
66
;http.persistent.handles.ident = "GLOBAL"
67