1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-12 10:45:38 +02:00

Change letsencrypt timer from 1h --> 1 day

There's no need to be calling certbot so frequently
This commit is contained in:
Jack Murray 2021-08-14 14:04:02 +01:00 committed by GitHub
parent 3a96bf2170
commit 7e5a35660a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,8 +22,8 @@ command = [
# Wait for nginx to start
time.sleep(5)
# Run certbot every hour
# Run certbot every day
while True:
subprocess.call(command)
time.sleep(3600)
time.sleep(86400)