From fb4e0b17810775d7602a8c6165cf92feeeef63bb Mon Sep 17 00:00:00 2001 From: Will Budicm Date: Tue, 1 Sep 2020 18:07:59 +1000 Subject: [PATCH] Provided static direcotry listing --- lighttpd.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lighttpd.conf b/lighttpd.conf index 1ccacc5..af94b90 100644 --- a/lighttpd.conf +++ b/lighttpd.conf @@ -40,3 +40,7 @@ ssl.pemfile = "/home/will/dev/elite.net.pem" server.name = "elite.net" } + +# Create under directory link in cgi-bin: to static pages directory. +# with i.e: ln -s /home/will/dev/LifeLog/htdocs/ static +$HTTP["url"] =~ "^/static($|/)" { server.dir-listing = "enable" } -- 2.34.1