mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-07 01:43:33 +00:00
Set interval timeout for certs via environment variable
This commit is contained in:
@@ -29,7 +29,7 @@ function omissions() {
|
||||
const internalCertificate = {
|
||||
|
||||
allowedSslFiles: ['certificate', 'certificate_key', 'intermediate_certificate'],
|
||||
intervalTimeout: 1000 * 60 * 60, // 1 hour
|
||||
intervalTimeout: process.env.CERT_INTERVAL_TIMEOUT || 1000 * 60 * 60, // Value (ms) OR default of 1 hour
|
||||
interval: null,
|
||||
intervalProcessing: false,
|
||||
renewBeforeExpirationBy: [30, 'days'],
|
||||
|
Reference in New Issue
Block a user