From 8cecb41c617a9db18668906800f9509a3e3d0243 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Wed, 7 Sep 2005 19:08:38 +0000 Subject: [PATCH] - add exemplar ini file --- docs/http.ini | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 docs/http.ini diff --git a/docs/http.ini b/docs/http.ini new file mode 100644 index 0000000..73c909c --- /dev/null +++ b/docs/http.ini @@ -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 = -- 2.30.2