diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2022-07-02 14:29:34 +0200 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2022-07-02 14:29:34 +0200 |
commit | 263be7806cb50a8badf6f6dac250a674ca14dc72 (patch) | |
tree | cea6ec7fc201f2cba80a9f5ec428d2d17ef0b4a1 | |
parent | bb4ccfb6c7351e6275763b5efa44041958af0010 (diff) | |
download | homer-263be7806cb50a8badf6f6dac250a674ca14dc72.tar.gz homer-263be7806cb50a8badf6f6dac250a674ca14dc72.tar.zst homer-263be7806cb50a8badf6f6dac250a674ca14dc72.zip |
Prevent webserver restart on clock jump
-rw-r--r-- | lighttpd.conf | 17 |
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 @@ | |||
1 | include "/etc/lighttpd/mime-types.conf" | 1 | include "/etc/lighttpd/mime-types.conf" |
2 | 2 | ||
3 | server.port = env.PORT | 3 | server.port = env.PORT |
4 | server.modules = ( "mod_alias" ) | 4 | server.modules = ( "mod_alias" ) |
5 | server.username = "lighttpd" | 5 | server.username = "lighttpd" |
6 | server.groupname = "lighttpd" | 6 | server.groupname = "lighttpd" |
7 | server.document-root = "/www" | 7 | server.document-root = "/www" |
8 | alias.url = ( env.SUBFOLDER => "/www" ) | 8 | alias.url = ( env.SUBFOLDER => "/www" ) |
9 | server.indexfiles = ("index.html") | 9 | server.indexfiles = ("index.html") |
10 | server.follow-symlink = "enable" | 10 | server.follow-symlink = "enable" |
11 | server.feature-flags += ( "server.clock-jump-restart" => 0 ) \ No newline at end of file | ||