Browse Source

Raise to 3650 days age of CRL file

Vadim Surkov 6 years ago
parent
commit
29893e1c04
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app.py

+ 2 - 2
app.py

@@ -731,7 +731,7 @@ class StoneVPN:
             print "Creating empty CRL file at %s" % self.crlfile
             cacert = self.load_cert(self.cacertfile)
             cakey = self.load_key(self.cakeyfile)
-            newCRL = crl.export(cacert, cakey, days=90)
+            newCRL = crl.export(cacert, cakey, days=3650)
             f=open(self.crlfile, 'w')
             f.write(newCRL)
             f.close()
@@ -1264,7 +1264,7 @@ class StoneVPN:
         crl.add_revoked(revoked)
         cacert = self.load_cert(self.cacertfile)
         cakey = self.load_key(self.cakeyfile)
-        newCRL = crl.export(cacert, cakey, days=20)
+        newCRL = crl.export(cacert, cakey, days=3650)
         f.write(newCRL)
         f.close()
         shutil.move(indexdb,indexdb + '.old')