1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
wiki.mbirth.de/know-how/software/_posts/2009-04-07-lighttpd.md

670 B

created, layout, layout_old, redirect_to, tags, title, toc, updated
created layout layout_old redirect_to tags title toc updated
2009-04-07 11:16:12 +0200 redirect default https://blog.mbirth.de/archives/2009/04/07/lighttpd.html
know-how
software
http
lighttpd
LightTPD false 2009-04-07 11:16:12 +0200

Include wildcard configuration files

Lighty doesn't allow wildcarded inclusions of configuration files, but you can do a little trick using the include_shell command:

include_shell "cat /etc/lighttpd/conf.d/*conf"

# more elegant
include_shell "find /etc/lighttpd/conf.d -maxdepth 1 -name '*.conf' -exec cat {} \;"