]> git.pld-linux.org Git - packages/apache1.git/blobdiff - apache1-httpd.conf
- webserver(virtual) provides renamed to be shorter and less confusing
[packages/apache1.git] / apache1-httpd.conf
index 17fa1476b16734ee17f3634ab6ede79b1809f0a1..670ef94eb2ad2f56d84de115eda5dd315f4f6e80 100644 (file)
@@ -11,7 +11,7 @@ ServerType standalone
 ServerRoot "/etc/apache"
 
 ResourceConfig  /dev/null
-AccessConfig    /dev/null
+AccessConfig   /dev/null
 
 LockFile /var/run/apache.lock
 PidFile /var/run/apache.pid
@@ -35,10 +35,6 @@ Group http
 ServerAdmin root@localhost
 ServerName localhost
 
-# Include other modules and packages config.
-Include conf.d/*.conf
-
-
 ###
 ### IP Address/Port
 ###
@@ -88,7 +84,22 @@ MaxClients 150
 MaxRequestsPerChild 30
 
 # These lines here are for packages which still use apxs to activate module.
-# LoadModule access_module      modules/mod_access.so
+# LoadModule access_module modules/mod_access.so
 # AddModule mod_foo.c
 
-# vim: filetype=apache ts=4 sw=4 et
+# Include other modules and packages config.
+Include conf.d/*.conf
+# Include webapps config
+Include webapps.d/*.conf
+
+# ScriptAlias: This controls which directories contain server scripts.
+<IfModule mod_alias.c>
+       ScriptAlias /cgi-bin/ "/home/services/apache/cgi-bin/"
+
+       <Directory "/home/services/apache/cgi-bin">
+               AllowOverride None
+               Options None
+               Order allow,deny
+               Allow from all
+       </Directory>
+</IfModule>
This page took 0.077263 seconds and 4 git commands to generate.