diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-05-05 12:54:06 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-05-05 12:54:06 +0200 |
commit | 9271611c189a3ed4129d3b98422f86ab3f774f10 (patch) | |
tree | 9095cf309d43fe41dc9d0b1ffdcff8b079c55224 /modules/private | |
parent | 418a4ed7da43fab53c18f99237bc296e37f47d2c (diff) | |
download | Nix-9271611c189a3ed4129d3b98422f86ab3f774f10.tar.gz Nix-9271611c189a3ed4129d3b98422f86ab3f774f10.tar.zst Nix-9271611c189a3ed4129d3b98422f86ab3f774f10.zip |
Upgrade roundcube
Diffstat (limited to 'modules/private')
-rw-r--r-- | modules/private/monitoring/objects_monitoring-1.nix | 2 | ||||
-rw-r--r-- | modules/private/websites/default.nix | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/modules/private/monitoring/objects_monitoring-1.nix b/modules/private/monitoring/objects_monitoring-1.nix index 741860a..46916f4 100644 --- a/modules/private/monitoring/objects_monitoring-1.nix +++ b/modules/private/monitoring/objects_monitoring-1.nix | |||
@@ -418,7 +418,7 @@ | |||
418 | service_description = "roundcube website is running on mail.immae.eu"; | 418 | service_description = "roundcube website is running on mail.immae.eu"; |
419 | host_name = "eldiron.immae.eu"; | 419 | host_name = "eldiron.immae.eu"; |
420 | use = "external-web-service"; | 420 | use = "external-web-service"; |
421 | check_command = ["check_https_code" "mail.immae.eu" "/roundcube/" "401" "<title>Roundcube"]; | 421 | check_command = ["check_https" "mail.immae.eu" "/roundcube/" "<title>Roundcube"]; |
422 | 422 | ||
423 | servicegroups = "webstatus-webapps,webstatus-email"; | 423 | servicegroups = "webstatus-webapps,webstatus-email"; |
424 | _webstatus_name = "Roundcube"; | 424 | _webstatus_name = "Roundcube"; |
diff --git a/modules/private/websites/default.nix b/modules/private/websites/default.nix index aba30e3..a3dcbb9 100644 --- a/modules/private/websites/default.nix +++ b/modules/private/websites/default.nix | |||
@@ -3,6 +3,19 @@ let | |||
3 | www_root = "/run/current-system/webapps/_www"; | 3 | www_root = "/run/current-system/webapps/_www"; |
4 | theme_root = "/run/current-system/webapps/_theme"; | 4 | theme_root = "/run/current-system/webapps/_theme"; |
5 | apacheConfig = { | 5 | apacheConfig = { |
6 | cache = { | ||
7 | # This setting permits to ignore time-based cache for files in the | ||
8 | # nix store: | ||
9 | # If a client requires an If-Modified-Since from timestamp 1, then | ||
10 | # this header is removed, and if the response contains a | ||
11 | # too old Last-Modified tag, then it is removed too | ||
12 | extraConfig = '' | ||
13 | <If "%{HTTP:If-Modified-Since} =~ /01 Jan 1970 00:00:01/" > | ||
14 | RequestHeader unset If-Modified-Since | ||
15 | </If> | ||
16 | Header unset Last-Modified "expr=%{LAST_MODIFIED} < 19991231235959" | ||
17 | ''; | ||
18 | }; | ||
6 | gzip = { | 19 | gzip = { |
7 | modules = [ "deflate" "filter" ]; | 20 | modules = [ "deflate" "filter" ]; |
8 | extraConfig = '' | 21 | extraConfig = '' |