]> git.pld-linux.org Git - packages/apache.git/blobdiff - apache-httpd.conf
- disable itk by default (last release 2009), try mod_ruid2
[packages/apache.git] / apache-httpd.conf
index bdae061c8fc5efc13a65dc63df18b50059bdb814..44511338f4abd8c8cc76d0883e184ec3eff3c0a7 100644 (file)
@@ -29,9 +29,9 @@ Listen 80
 
 # ServerAdmin: Your address, where problems with the server should be
 # e-mailed.  This address appears on some server-generated pages, such
-# as error documents.  e.g. admin@your-domain.com
+# as error documents.  e.g. admin@example.com
 #
-ServerAdmin you@example.com
+ServerAdmin root@example.com
 
 # ServerName gives the name and port that the server uses to identify itself.
 # This can often be determined automatically, but we recommend you specify
@@ -63,6 +63,8 @@ ServerTokens Full
 ServerSignature On
 HostnameLookups Off
 
+TraceEnable Off
+
 # Include other modules and packages config.
 Include conf.d/*.conf
 
@@ -88,3 +90,23 @@ Include webapps.d/*.conf
                </IfModule>
        </Directory>
 </IfModule>
+
+# VirtualHost: Allows the daemon to respond to requests for more than one
+# server address, if your server machine is configured to accept IP packets
+# for multiple addresses. This can be accomplished with the ifconfig
+# alias flag, or through kernel patches like VIF.
+
+# Any apache.conf conf directive may go into a VirtualHost command.
+# See also the BindAddress entry.
+
+# Setup default vhost (first one defined in config) and include vhosts configuration
+NameVirtualHost *:80
+<VirtualHost *:80>
+    ServerName localhost
+#      ServerAdmin webmaster@host.example.com
+#      DocumentRoot /www/docs/host.example.com
+#      ErrorLog logs/host.example.com-error_log
+#      TransferLog logs/host.example.com-access_log
+</VirtualHost>
+
+Include vhosts.d/*.conf
This page took 0.033085 seconds and 4 git commands to generate.