diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2022-04-30 15:42:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-30 15:42:31 +0200 |
commit | 7e48e099aa968307d2b99720a076b4bdc706b5fd (patch) | |
tree | 971b362eb335628d818a3faf14ba4a6d9749d850 /lighttpd.conf | |
parent | af0a6e89c9104ed69766e41f032a4b610ef67ccd (diff) | |
parent | 4f56c2c11baad8f98c338989fb0cd8e5af78d0c8 (diff) | |
download | homer-7e48e099aa968307d2b99720a076b4bdc706b5fd.tar.gz homer-7e48e099aa968307d2b99720a076b4bdc706b5fd.tar.zst homer-7e48e099aa968307d2b99720a076b4bdc706b5fd.zip |
Merge pull request #421 from bastienwirtz/docker-rework
Docker rework
Diffstat (limited to 'lighttpd.conf')
-rw-r--r-- | lighttpd.conf | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lighttpd.conf b/lighttpd.conf new file mode 100644 index 0000000..32e14da --- /dev/null +++ b/lighttpd.conf | |||
@@ -0,0 +1,10 @@ | |||
1 | include "/etc/lighttpd/mime-types.conf" | ||
2 | |||
3 | server.port = env.PORT | ||
4 | server.modules = ( "mod_alias" ) | ||
5 | server.username = "lighttpd" | ||
6 | server.groupname = "lighttpd" | ||
7 | server.document-root = "/www" | ||
8 | alias.url = ( env.SUBFOLDER => "/www" ) | ||
9 | server.indexfiles = ("index.html") | ||
10 | server.follow-symlink = "enable" | ||