Skip to content
  1. Jun 06, 2010
  2. Jun 04, 2010
  3. Jun 02, 2010
  4. Jun 01, 2010
  5. May 29, 2010
  6. May 14, 2010
  7. May 12, 2010
  8. May 10, 2010
  9. May 07, 2010
    • Philip M. Gollucci's avatar
      Fix the following: · caa07236
      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
      caa07236
  10. May 03, 2010
  11. Apr 26, 2010
  12. Apr 25, 2010
  13. Apr 21, 2010
  14. Apr 11, 2010
  15. Apr 02, 2010
  16. Apr 01, 2010
  17. Mar 29, 2010
  18. Mar 27, 2010
  19. Mar 22, 2010
  20. Mar 10, 2010
  21. Mar 06, 2010
  22. Mar 05, 2010
  23. Mar 03, 2010
  24. Mar 02, 2010
  25. Feb 26, 2010
  26. Feb 25, 2010
  27. Feb 24, 2010
  28. Feb 23, 2010
  29. Feb 22, 2010