diff options
author | David Thompson <dthompson2@worcester.edu> | 2023-11-19 12:37:03 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2023-11-19 12:37:03 -0500 |
commit | 1bfb8ae14ad9d5d72f5c71175705b9f85b2d55d7 (patch) | |
tree | a850b8f52a2eebaf0a07485dc4a4596c67173b3a | |
parent | 1adf47a3c3f53806bb1d4b943779f17f3ed76bc9 (diff) |
takemi: os: Fix log rotation for nginx.
-rw-r--r-- | takemi-os.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/takemi-os.scm b/takemi-os.scm index 521bf4c..5f9457d 100644 --- a/takemi-os.scm +++ b/takemi-os.scm @@ -287,7 +287,7 @@ (frequency 'daily) (files '("/var/log/nginx/access.log" "/var/log/nginx/error.log")) - (options `("packdir /var/log/nginx" + (options `("storedir /var/log/nginx" ;; Keep a week of logs. "rotate 6" ;; Run post-rotate once per |