automation.htm
10 months ago
general.htm
4 months ago
integrations.htm
1 year ago
logging.htm
1 year ago
maintenance.htm
1 year ago
notifications.htm
1 year ago
performance.htm
1 year ago
restore.htm
1 year ago
security.htm
4 days ago
updates.htm
1 year ago
maintenance.htm
79 lines
| 1 | <div class="pd-20 settings"> |
| 2 | <div class="form-group row"> |
| 3 | <label for="queue_ttl" class="col-sm-3 col-form-label jb-label">{{ lang.t('Done Queue Items TTL') }}</label> |
| 4 | <div class="col-sm-9"> |
| 5 | <div class="pd-3 jobs"> |
| 6 | <!-- Number input for Queue Items TTL --> |
| 7 | <input type="number" |
| 8 | max="72" |
| 9 | id="queue_ttl" |
| 10 | class="form-control" |
| 11 | name="MAINTENANCE_QUEUE_HOURS_TTL" |
| 12 | ng-model="saveData.MAINTENANCE_QUEUE_HOURS_TTL"> |
| 13 | <p class="pd-3">{{ lang.t('This action will clear completed items from the queue table after a specified number of hours (TTL). Set to 0 to disable this feature.') }}</p> |
| 14 | </div> |
| 15 | </div> |
| 16 | </div> |
| 17 | |
| 18 | <div class="form-group row"> |
| 19 | <label for="download_ttl" class="col-sm-3 col-form-label jb-label">{{ lang.t('Download TTL') }}</label> |
| 20 | <div class="col-sm-9"> |
| 21 | <div class="pd-3 jobs"> |
| 22 | <input type="number" |
| 23 | max="730" |
| 24 | id="download_ttl" |
| 25 | class="form-control" |
| 26 | name="MAINTENANCE_DOWNLOAD_ITEMS_TTL" |
| 27 | ng-model="saveData.MAINTENANCE_DOWNLOAD_ITEMS_TTL"> |
| 28 | <p class="pd-3">{{ lang.t('Sets the time-to-live (TTL) for downloads. After the specified number of hours, expired items will be automatically deleted. Enter a value in hours, e.g., 72 for 3 days') }}</p> |
| 29 | </div> |
| 30 | </div> |
| 31 | </div> |
| 32 | |
| 33 | <div class="form-group row"> |
| 34 | <label for="download_limit" class="col-sm-3 col-form-label jb-label">{{ lang.t('Download Limit') }}</label> |
| 35 | <div class="col-sm-9"> |
| 36 | <div class="pd-3 jobs"> |
| 37 | <input type="number" |
| 38 | max="99" |
| 39 | id="download_limit" |
| 40 | class="form-control" |
| 41 | name="MAINTENANCE_DOWNLOAD_LIMIT" |
| 42 | ng-model="saveData.MAINTENANCE_DOWNLOAD_LIMIT"> |
| 43 | <p class="pd-3">{{ lang.t('This setting controls how many downloads can be active at the same time. For example, if set to 2, and there are already 2 active downloads, new downloads cannot be generated until at least one is cleared. Set to 0 to disable this feature.') }}</p> |
| 44 | </div> |
| 45 | </div> |
| 46 | </div> |
| 47 | |
| 48 | <div class="form-group row"> |
| 49 | <label for="alerts_ttl" class="col-sm-3 col-form-label jb-label">{{ lang.t('System Alerts TTL') }}</label> |
| 50 | <div class="col-sm-9"> |
| 51 | <div class="pd-3 jobs"> |
| 52 | <!-- Number input for System Alerts TTL --> |
| 53 | <input type="number" |
| 54 | max="72" |
| 55 | id="alerts_ttl" |
| 56 | class="form-control" |
| 57 | name="MAINTENANCE_QUEUE_ALERTS_TTL" |
| 58 | ng-model="saveData.MAINTENANCE_QUEUE_ALERTS_TTL"> |
| 59 | <p class="pd-3">{{ lang.t('This action will clear generated system alerts after a specified number of hours (TTL). Set to 0 to disable this feature.') }}</p> |
| 60 | </div> |
| 61 | </div> |
| 62 | </div> |
| 63 | |
| 64 | <div class="form-group row"> |
| 65 | <label for="config_rotate_ttl" class="col-sm-3 col-form-label jb-label">{{ lang.t('Export Config Rotate Days') }}</label> |
| 66 | <div class="col-sm-9"> |
| 67 | <div class="pd-3 jobs"> |
| 68 | <!-- Number input for Config Rotate Days --> |
| 69 | <input type="number" |
| 70 | max="30" |
| 71 | id="config_rotate_ttl" |
| 72 | class="form-control" |
| 73 | name="CONFIG_EXPORT_ROTATE" |
| 74 | ng-model="saveData.CONFIG_EXPORT_ROTATE"> |
| 75 | <p class="pd-3">{{ lang.t('JetBackup exports its core config settings to selected destinations (once a day). Specify the number of exports to keep. Older exports beyond this duration will be automatically deleted. Set this value to 0 to keep exports indefinitely.') }}</p> |
| 76 | </div> |
| 77 | </div> |
| 78 | </div> |
| 79 | </div> |