]> git.pld-linux.org Git - packages/apache1.git/blobdiff - apache1-httpd.conf
rel 15; builds
[packages/apache1.git] / apache1-httpd.conf
index 1bc3603a89934f1104230e8e36fa43660b43baea..bf3ffc48fa166c1111b4aec501b88eb0fa6f87a3 100644 (file)
@@ -25,6 +25,7 @@ DefaultType text/plain
 
 HostnameLookups Off
 ServerSignature Email
+#AddDefaultCharset "utf-8"
 
 User  http
 Group http
@@ -39,12 +40,12 @@ ServerName localhost
 ### IP Address/Port
 ###
 #BindAddress *
-Listen 80
 
 # Listen can take two arguments.
 # (this is an extension for supporting IPv6 addresses)
 #Listen :: 80
 #Listen 0.0.0.0 80
+Listen 80
 
 ###
 ### Performance settings Section
@@ -114,3 +115,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 0.0.0.0:80
+<VirtualHost 0.0.0.0: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.111008 seconds and 4 git commands to generate.