- May 18, 2010
-
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@945947 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@945944 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@945937 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@945935 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@945934 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@945931 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
Moves most of the rewritemap stuff out into its own document where we can give it the exhaustive treatment it deserves without making the reference doc unmanageable. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@945921 13f79535-47bb-0310-9956-ffa450edef68
-
- May 17, 2010
-
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@945104 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@945103 13f79535-47bb-0310-9956-ffa450edef68
-
- May 16, 2010
-
-
Igor Galić authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@944795 13f79535-47bb-0310-9956-ffa450edef68
-
Igor Galić authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@944794 13f79535-47bb-0310-9956-ffa450edef68
-
- May 14, 2010
-
-
Jeff Trawick authored
PR: 45343 Submitted by: Bill Cole <apachebugz-20090909 billmail.scconsult.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@944383 13f79535-47bb-0310-9956-ffa450edef68
-
- May 13, 2010
-
-
Jeff Trawick authored
Available in Apache 2.2.15 and later, not 2.3 and later (2.2.x docs already has the right blurb) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@943875 13f79535-47bb-0310-9956-ffa450edef68
-
- May 12, 2010
-
-
Jeff Trawick authored
prefork MPM: Run cleanups for final request when process exits gracefully. PR: 43857 Submitted by: Tom Donovan git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@943650 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
memory leak pointed out by jorton (original patch to be committed shortly) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@943648 13f79535-47bb-0310-9956-ffa450edef68
-
- May 10, 2010
-
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@942937 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
PR: 43857 Submitted by: Tom Donovan, simplified slightly by me git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@942897 13f79535-47bb-0310-9956-ffa450edef68
-
Igor Galić authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@942800 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@942763 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@942762 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@942761 13f79535-47bb-0310-9956-ffa450edef68
-
- May 09, 2010
-
-
Lucien Gentis authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@942538 13f79535-47bb-0310-9956-ffa450edef68
-
- May 07, 2010
-
-
Philip M. Gollucci authored
$> grep -e autoindex_ -e cgi_ httpd.conf LoadModule autoindex_module libexec/apache22/mod_autoindex.so LoadModule cgi_module libexec/apache22/mod_cgi.so fire up the following commands $> apxs -e -a -n autoindex mod_autoindex.so [activating module `autoindex' in /usr/local/etc/apache22/httpd.conf] $> apxs -e -a -n cgi mod_cgi.so [activating module `cgi' in /usr/local/etc/apache22/httpd.conf] This will result into the following httpd.conf $> grep -e autoindex_ -e cgi_ httpd.conf LoadModule autoindex_module libexec/apache22/mod_autoindex.so LoadModule cgi_module libexec/apache22/mod_cgi.so LoadModule autoindex_module libexec/apache22/mod_autoindex.so LoadModule cgi_module libexec/apache22/mod_cgi.so As you notice the modules are now loaded twice Now try to deactivate for the loaded ssl module $> grep ssl_ httpd.conf LoadModule ssl_module libexec/apache22/mod_ssl.so $> apxs -e -A -n ssl mod_ssl.so [preparing module `ssl' in /usr/local/etc/apache22/httpd.conf] $> grep ssl_ httpd.conf LoadModule ssl_module libexec/apache22/mod_ssl.so #LoadModule ssl_module libexec/apache22/mod_ssl.so As reported in FreeBSD ports PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/133704 Previously discussed with: wrowe@ This b/c '$lmd' expects the amount of space to be a fixed amount. Use \s+ to make any valid httpd.conf syntax work (i.e. at least 1 space) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@942209 13f79535-47bb-0310-9956-ffa450edef68
-
- May 06, 2010
-
-
Daniel Earl Poirier authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@941737 13f79535-47bb-0310-9956-ffa450edef68
-
Daniel Earl Poirier authored
in lua. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@941734 13f79535-47bb-0310-9956-ffa450edef68
-
- May 05, 2010
-
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@941454 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@941127 13f79535-47bb-0310-9956-ffa450edef68
-
- May 04, 2010
-
-
William A. Rowe Jr authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@940981 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@940980 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
save the caller later hassle in looking this up, if they like. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@940979 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@940969 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
where it is so that I don't have to go hunting for it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@940953 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
(Patch from Gillis) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@940831 13f79535-47bb-0310-9956-ffa450edef68
-
Daniel Earl Poirier authored
the patch. PR: 40827. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@940824 13f79535-47bb-0310-9956-ffa450edef68
-
- May 03, 2010
-
-
Daniel Earl Poirier authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@940557 13f79535-47bb-0310-9956-ffa450edef68
-
Daniel Earl Poirier authored
Thanks to Bryn Dole for the patch. PR: 48497 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@940526 13f79535-47bb-0310-9956-ffa450edef68
-
Daniel Earl Poirier authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@940524 13f79535-47bb-0310-9956-ffa450edef68
-
- May 02, 2010
-
-
Daniel Earl Poirier authored
implementation in Lua, we cannot actually do basic auth in the hook, so just fake it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@940250 13f79535-47bb-0310-9956-ffa450edef68
-
Daniel Earl Poirier authored
- link to the Lua web site - Lua modules are properly refered to as 'packages' - intro to writing hooks in Lua - remove unnecessary indentation from examples git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@940246 13f79535-47bb-0310-9956-ffa450edef68
-
- May 01, 2010
-
-
Daniel Earl Poirier authored
default configuration values. Indicate that mod_lua is available in 2.3. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@940007 13f79535-47bb-0310-9956-ffa450edef68
-