caddytls: Allow disabling storage cleaning, avoids writing two files (#6593)

This commit is contained in:
Francis Lavoie 2024-11-05 12:47:41 -05:00 committed by GitHub
parent 5823eccf99
commit 5c8dc34418
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 67 additions and 3 deletions

View file

@ -9,6 +9,8 @@
storage file_system {
root /data
}
storage_check off
storage_clean_interval off
acme_ca https://example.com
acme_ca_root /path/to/ca.crt
ocsp_stapling off
@ -73,7 +75,9 @@
}
}
},
"disable_ocsp_stapling": true
"disable_ocsp_stapling": true,
"disable_storage_check": true,
"disable_storage_clean": true
}
}
}