apache2.confd 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # Original works belongs to Gentoo Linux
  2. # Config file for /etc/conf. d/apache2
  3. # When you install a module it is easy to activate or deactivate the modules
  4. # and other features of apache using the APACHE2_OPTS line. Every module should
  5. # install a configuration in /etc/apache2/modules.d. In that file will be an
  6. # <IfDefine NNN> where NNN is the option to enable that module.
  7. # Here are the options available in the default configuration:
  8. # USERDIR Enables /~username mapping to /home/username/public_html
  9. # INFO Enables mod_info, a useful module for debugging
  10. # PROXY Enables mod_proxy
  11. # DAV Enables mod_dav
  12. # DAV_FS Enables mod_dav_fs (you should enable this when you enable DAV
  13. # unless you know what you are doing)
  14. # SSL Enables SSL
  15. # SSL_DEFAULT_VHOST Enables default vhost for SSL (you should enable this
  16. # when you enable SSL unless you know what you are doing)
  17. # LDAP Enables mod_ldap
  18. # AUTH_LDAP Enables authentication through mod_ldap
  19. # DEFAULT_VHOST Enables the default virtual host in /var/www/localhost/htdocs
  20. APACHE2_OPTS="-D DEFAULT_VHOST -D USERDIR"
  21. # Extended options for advanced uses of Apache ONLY
  22. # You don't need to edit these unless you are doing crazy Apache stuff
  23. # As not having them set correctly, or feeding in an incorrect configuration
  24. # via them will result in Apache failing to start
  25. # YOU HAVE BEEN WARNED.
  26. # ServerRoot setting
  27. #SERVERROOT=/usr/lib/apache2
  28. # Configuration file location
  29. # - If this does NOT start with a '/', then it is treated relative to
  30. # $SERVERROOT by Apache
  31. #CONFIGFILE=/etc/apache2/httpd.conf
  32. # Location to log startup errors to
  33. # They are normally dumped to your terminal.
  34. #STARTUPERRORLOG="/var/log/apache2/startuperror.log"
  35. # Environment variables to keep
  36. # All environment variables are cleared from apache
  37. # Use this to preserve some of them
  38. # NOTE!!! It's very important that this contains PATH
  39. # Also, it will fail if the _value_ of any of these variables contains a space
  40. KEEPENV="PATH"