]> git.pld-linux.org Git - packages/lighttpd.git/blobdiff - lighttpd.conf
- mimetype_textcharsetheader to tune (now) optional charset header for text/* content...
[packages/lighttpd.git] / lighttpd.conf
index 6336afa673a1c74dd2bf77aa5b8d6d4e6c08b735..01637aa6c5835a7b44eb8ea755a456cadc567ab1 100644 (file)
@@ -1,7 +1,7 @@
 # $Id$
 # lighttpd configuration file.
 
-include_shell "/bin/cat conf.d/*.conf"
+include_shell "for f in conf.d/*.conf ; do [ -f \"$f\" ] && echo \"include \\"$f\\"\" ; done"
 
 ## a static document-root, for virtual-hosting take look at the
 ## server.virtual-* options
@@ -69,7 +69,7 @@ server.port = 80
 
 ## bind to specific host (default: all interfaces)
 ## the name is resolved to ip at startup only.
-#server.bind = "grisu.home.kneschke.de"
+#server.bind = "www.example.org"
 
 ## additionally just bind to localhost:80
 #$SERVER["socket"] == "127.0.0.1:80"  {}
@@ -108,4 +108,7 @@ server.groupname           = "lighttpd"
 #server.kbytes-per-second = 128
 
 # webapps configs
-include_shell "/bin/cat webapps.d/*.conf"
+include_shell "for f in webapps.d/*.conf ; do [ -f \"$f\" ] && echo \"include \\"$f\\"\" ; done"
+
+# vhosts config
+include_shell "for f in vhosts.d/*.conf ; do [ -f \"$f\" ] && echo \"include \\"$f\\"\" ; done"
This page took 0.088226 seconds and 4 git commands to generate.