aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2022-07-02 14:29:34 +0200
committerBastien Wirtz <bastien.wirtz@gmail.com>2022-07-02 14:29:34 +0200
commit263be7806cb50a8badf6f6dac250a674ca14dc72 (patch)
treecea6ec7fc201f2cba80a9f5ec428d2d17ef0b4a1
parentbb4ccfb6c7351e6275763b5efa44041958af0010 (diff)
downloadhomer-263be7806cb50a8badf6f6dac250a674ca14dc72.tar.gz
homer-263be7806cb50a8badf6f6dac250a674ca14dc72.tar.zst
homer-263be7806cb50a8badf6f6dac250a674ca14dc72.zip
Prevent webserver restart on clock jump
-rw-r--r--lighttpd.conf17
1 files changed, 9 insertions, 8 deletions
diff --git a/lighttpd.conf b/lighttpd.conf
index 32e14da..f62657a 100644
--- a/lighttpd.conf
+++ b/lighttpd.conf
@@ -1,10 +1,11 @@
1include "/etc/lighttpd/mime-types.conf" 1include "/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 = "lighttpd" 5server.username = "lighttpd"
6server.groupname = "lighttpd" 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")
10server.follow-symlink = "enable" 10server.follow-symlink = "enable"
11server.feature-flags += ( "server.clock-jump-restart" => 0 ) \ No newline at end of file