aboutsummaryrefslogtreecommitdiffhomepage
path: root/lighttpd.conf
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2022-04-10 11:55:11 +0200
committerBastien Wirtz <bastien.wirtz@gmail.com>2022-04-30 15:39:36 +0200
commit049f85221e945b90bf87d21afe4d306839d65740 (patch)
tree1288ab580f2a274df8b507e2bbe37e2ff03c70ca /lighttpd.conf
parentcd75da69f9e57c3fe0f63c3ed6def0577d75a47c (diff)
downloadhomer-049f85221e945b90bf87d21afe4d306839d65740.tar.gz
homer-049f85221e945b90bf87d21afe4d306839d65740.tar.zst
homer-049f85221e945b90bf87d21afe4d306839d65740.zip
Simplify the container starting process to allow it to run with a
unprivileged user
Diffstat (limited to 'lighttpd.conf')
-rw-r--r--lighttpd.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/lighttpd.conf b/lighttpd.conf
index 04b0bed..32e14da 100644
--- a/lighttpd.conf
+++ b/lighttpd.conf
@@ -2,8 +2,8 @@ include "/etc/lighttpd/mime-types.conf"
2 2
3server.port = env.PORT 3server.port = env.PORT
4server.modules = ( "mod_alias" ) 4server.modules = ( "mod_alias" )
5server.username = env.USER 5server.username = "lighttpd"
6server.groupname = env.GROUP 6server.groupname = "lighttpd"
7server.document-root = "/www" 7server.document-root = "/www"
8alias.url = ( env.SUBFOLDER => "/www" ) 8alias.url = ( env.SUBFOLDER => "/www" )
9server.indexfiles = ("index.html") 9server.indexfiles = ("index.html")