- add exemplar ini file
authorMichael Wallner <mike@php.net>
Wed, 7 Sep 2005 19:08:38 +0000 (19:08 +0000)
committerMichael Wallner <mike@php.net>
Wed, 7 Sep 2005 19:08:38 +0000 (19:08 +0000)
docs/http.ini [new file with mode: 0644]

diff --git a/docs/http.ini b/docs/http.ini
new file mode 100644 (file)
index 0000000..73c909c
--- /dev/null
@@ -0,0 +1,30 @@
+; example INI file for pecl/http
+; $Id$
+
+[http]
+; enable if you want to transform all errors to exceptions (PHP >= 5 only)
+http.only_exceptions = 0
+
+; the hashing algorithm with wich ETags are generated
+; you can use mhash constants if ext/mhash is enabled, or their 
+; literal representation if ext/http was linked against libmhash
+;http.etag_mode = MHASH_TIGER ; same as 7
+http.etag_mode = HTTP_ETAG_MD5
+
+; allowed request methods
+; by default PHP ignores unkown request methods
+; PHP will exit with a response status of 405 and an Allow header
+; if it encounters a request method not contained in the specified list
+;http.allowed_methods = "HEAD, GET, POST"
+
+; log file for positive cache hits
+;http.cache_log =
+
+; log file for redirects
+;http.redirect_log =
+
+; log file for requests with an unallowed request method
+;http.allowed_methods_log =
+
+; composite log file (i.e. log all messages to this file)
+;http.composite_log =