/[Apache-SVN]
ViewVC logotype

Revision 942211


Jump to revision: Previous Next
Author: pgollucci
Date: Fri May 7 20:43:34 2010 UTC (14 years, 1 month ago)
Changed paths: 5
Log Message:
- Backports r942209

ix the following:
$> 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)

As previously discussed with wrowe, treast this the same way roy treats
mime.types



Changed paths

Path Details
Directoryhttpd/httpd/branches/2.0.x/ modified , props changed
Directoryhttpd/httpd/branches/2.0.x/CHANGES modified , text changed
Directoryhttpd/httpd/branches/2.0.x/docs/ modified , props changed
Directoryhttpd/httpd/branches/2.0.x/docs/conf/mime.types modified , props changed
Directoryhttpd/httpd/branches/2.0.x/support/apxs.in modified , text changed

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26