blob: 87b98a412326285e8029f1711cedfd242b86287d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
; Enable HTTP extension module
extension=http.so
; http://www.php.net/manual/en/http.configuration.php
; The hashing algorithm used to generate the ETag. MD5, SHA1, and CRC32 are always
; available. If the hash extension is enabled, any hashing algorithms this extension
; provides are available, too.
;http.etag.mode = "md5"
; The maximum amount of persistent handles to keep alive.
;http.persistent_handle.limit = -1
; Whether the global HttpRequestDataShare should by default share connect information.
; This is not yet implemented in libcurl.
;http.request_datashare.connect = 0
; Whether the global HttpRequestDataShare should by default share cookie information.
;http.request_datashare.cookie = 0
; Whether the global HttpRequestDataShare should by default share name lookup information.
;http.request_datashare.dns = 1
; Whether the global HttpRequestDataShare should by default share SSL session information.
; This is not yet implemented in libcurl.
;http.request_datashare.ssl = 0
|