1. 12 May, 2010 1 commit
  2. 10 May, 2010 1 commit
  3. 07 May, 2010 1 commit
    • 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
  4. 03 May, 2010 1 commit
  5. 26 Apr, 2010 1 commit
  6. 25 Apr, 2010 1 commit
  7. 21 Apr, 2010 1 commit
  8. 11 Apr, 2010 1 commit
  9. 02 Apr, 2010 1 commit
  10. 01 Apr, 2010 1 commit
  11. 29 Mar, 2010 2 commits
  12. 27 Mar, 2010 1 commit
  13. 22 Mar, 2010 1 commit
  14. 10 Mar, 2010 2 commits
  15. 06 Mar, 2010 1 commit
  16. 05 Mar, 2010 2 commits
  17. 03 Mar, 2010 1 commit
  18. 02 Mar, 2010 1 commit
  19. 26 Feb, 2010 1 commit
  20. 25 Feb, 2010 1 commit
  21. 24 Feb, 2010 1 commit
  22. 23 Feb, 2010 2 commits
  23. 22 Feb, 2010 2 commits
  24. 20 Feb, 2010 1 commit
  25. 16 Feb, 2010 3 commits
  26. 14 Feb, 2010 1 commit
  27. 13 Feb, 2010 2 commits
  28. 12 Feb, 2010 1 commit
  29. 04 Feb, 2010 1 commit
  30. 03 Feb, 2010 1 commit
  31. 02 Feb, 2010 1 commit
  32. 01 Feb, 2010 1 commit