- 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
-
Daniel Earl Poirier authored
Avoid null pointer dereference by returning if we can't get a lua VM. Move "we got a VM" message to after we know we have one. Check that we found the lua handler function before trying to call it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@939987 13f79535-47bb-0310-9956-ffa450edef68
-
Daniel Earl Poirier authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@939986 13f79535-47bb-0310-9956-ffa450edef68
-
Daniel Earl Poirier authored
seg faults in lua. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@939980 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 30, 2010
-
-
Daniel Earl Poirier authored
Remove references to no-longer-needed pre-req, mod_apreq2. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@939704 13f79535-47bb-0310-9956-ffa450edef68
-
Daniel Earl Poirier authored
Remove references to no-longer-needed pre-req, mod_apreq2. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@939703 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 26, 2010
-
-
Eric Covener authored
reading a chunk-length. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@938265 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@938031 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 25, 2010
-
-
Eric Covener authored
chunk-size. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@937858 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 24, 2010
-
-
Lucien Gentis authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@937637 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 23, 2010
-
-
Igor Galić authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@937323 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@937303 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 22, 2010
-
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@937064 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@937063 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@937056 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@937055 13f79535-47bb-0310-9956-ffa450edef68
-
Igor Galić authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@936907 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@936880 13f79535-47bb-0310-9956-ffa450edef68
-
Jean-Frederic Clere authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@936828 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@936816 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@936814 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
configuration. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@936813 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@936812 13f79535-47bb-0310-9956-ffa450edef68
-