X-Git-Url: http://git.pld-linux.org/?a=blobdiff_plain;ds=sidebyside;f=lighttpd.conf;fp=lighttpd.conf;h=04973ff445b31f3a191048935b579288fc80d85e;hb=126c0d6aa6d7f54808936b47737eaa422849d36a;hp=75079f7cfccae3a9b3f03e8e00fe4fd6fdf71155;hpb=cb3abd0d8cc5af25f9559f812db8c1b67154976c;p=packages%2Flighttpd.git diff --git a/lighttpd.conf b/lighttpd.conf index 75079f7..04973ff 100644 --- a/lighttpd.conf +++ b/lighttpd.conf @@ -1,6 +1,7 @@ # lighttpd configuration file. -include_shell "for f in conf.d/*.conf ; do [ -f \"$f\" ] && echo \"include \\"$f\\"\" ; done" +# modules config +include_shell "for f in conf.d/*.conf; do [ -f \"$f\" ] && echo \"include \\"$f\\"\"; done; exit 0" ## a static document-root, for virtual-hosting take look at the ## server.virtual-* options @@ -180,8 +181,10 @@ server.groupname = "lighttpd" ## #connection.kbytes-per-second = 32 -# webapps configs -include_shell "for f in webapps.d/*.conf ; do [ -f \"$f\" ] && echo \"include \\"$f\\"\" ; done" +# webapps config +include_shell "for f in webapps.d/*.conf; do [ -f \"$f\" ] && echo \"include \\"$f\\"\"; done; exit 0" # vhosts config -include_shell "for f in vhosts.d/*.conf ; do [ -f \"$f\" ] && echo \"include \\"$f\\"\" ; done" +include_shell "for f in vhosts.d/*.conf; do [ -f \"$f\" ] && echo \"include \\"$f\\"\"; done; exit 0" + +## EOF