- 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 03, 2010
-
-
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
-
- 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
-
- 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 21, 2010
-
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@936407 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 11, 2010
-
-
Stefan Fritsch authored
PR: 23673 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@932927 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 02, 2010
-
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@930254 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 01, 2010
-
-
Nick Kew authored
HTTP response code from a backend. PR 48939 [Daniel Ruggeri <DRuggeri primary.net>] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@930125 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 29, 2010
-
-
Graham Leggett authored
cache, if provided as an optional parameter on the command line. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@928921 13f79535-47bb-0310-9956-ffa450edef68
-
Graham Leggett authored
server startup if no files or directories match a wildcard path. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@928916 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 27, 2010
-
-
Graham Leggett authored
PR: 48944 Submitted by: Mark Drayton mark markdrayton.info git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@928223 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 22, 2010
-
-
William A. Rowe Jr authored
builds of mod_ssl to use 'SSLFIPS off' for portability, but the proper build of openssl is required for 'SSLFIPS on'. PR: 46270 Submitted by: Dr Stephen Henson <steve openssl.org>, wrowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@925980 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 10, 2010
-
-
Stefan Fritsch authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@921583 13f79535-47bb-0310-9956-ffa450edef68
-
Stefan Fritsch authored
ap_process_http_request. This ensures that we are not inserted for other protocol handlers (like mod_ftp) and mod_proxy's backend connections. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@921378 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 06, 2010
-
-
William A. Rowe Jr authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@919690 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 05, 2010
-
-
Jeff Trawick authored
where appropriate git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@919552 13f79535-47bb-0310-9956-ffa450edef68
-
Ruediger Pluem authored
PR: 39785 Submitted by: Mark Montague <markmont umich.edu>, rpluem Reviewed by: rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@919323 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 03, 2010
-
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@918428 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 02, 2010
-
-
William A. Rowe Jr authored
mod_isapi: Do not unload an isapi .dll module until the request processing is completed, avoiding orphaned callback pointers. Submitted by: Brett Gervasoni <brettg senseofsecurity.com>, trawick Reviewed by: trawick, wrowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@917870 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 26, 2010
-
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@916789 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 25, 2010
-
-
Daniel Earl Poirier authored
PR: 48761 Submitted by: <lindon orthanc.ca> With additional changes by: poirier git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@916377 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 24, 2010
-
-
Eric Covener authored
PR46541 Submitted By: Paul Reder, Eric Covener Reviewed By: Eric Covener git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@915660 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 23, 2010
-
-
Nick Kew authored
PR 33112 Joergen Thomsen git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@915407 13f79535-47bb-0310-9956-ffa450edef68
-
Eric Covener authored
some are not password-protected. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@915295 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 22, 2010
-
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@912668 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
modules use httpd mutexes. Add an init call from core's pre-config hook to ensure init is performed before the config is parsed. PR: 48787 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@912666 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 20, 2010
-
-
Nick Kew authored
Analysis by Stuart Children; patch by niq git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@912063 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 16, 2010
-
-
Graham Leggett authored
truncation. Useful when the log is being processed in real time using a command like tail. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@910719 13f79535-47bb-0310-9956-ffa450edef68
-
Graham Leggett authored
httpd's writing of a pid file) so that it becomes possible to run more than one instance of htcacheclean on the same machine. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@910705 13f79535-47bb-0310-9956-ffa450edef68
-
Daniel Earl Poirier authored
arguments like -f. Suggested by Shaya Potter. [Dan Poirier] PR: 48752 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@910684 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 14, 2010
-
-
Graham Leggett authored
request bodies back within the response through the output filter stack. Can be used to turn an output filter into a web service. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@910017 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 13, 2010
-
-
Graham Leggett authored
from a reverse proxied URL, that the subrequest respects the status of the original request. This brings the behaviour of proxy_handler in line with default_handler. PR 47106. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@909899 13f79535-47bb-0310-9956-ffa450edef68
-
Graham Leggett authored
the path specified by the Include directive. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@909878 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 12, 2010
-
-
Rainer Jung authored
PR: 19188 Submitted by: Philippe Dutrueux <lilas evidian.com> Reviewed by: rjung git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@909323 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 04, 2010
-
-
Daniel Earl Poirier authored
Add warning when within MinSpareThreads. PR: 46996 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@906535 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 03, 2010
-
-
Stefan Fritsch authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@906261 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 02, 2010
-
-
Graham Leggett authored
on each session save, resulting in timed out sessions when there should not have been. Fixed. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@905490 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 01, 2010
-
-
Graham Leggett authored
request. Submitted by: Christian Folini <christian.folini netnea com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@905420 13f79535-47bb-0310-9956-ffa450edef68
-
Graham Leggett authored
within the INCLUDES filter, making it possible to cache responses if desired. Fix the default value of the SSIAccessEnable directive. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@905406 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 30, 2010
-
-
Stefan Fritsch authored
argument with a '!'. PR: 35350 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@904768 13f79535-47bb-0310-9956-ffa450edef68
-