PluginProbe ʕ •ᴥ•ʔ
JetBackup – Backup, Restore & Migrate / 3.1.22.3
JetBackup – Backup, Restore & Migrate v3.1.22.3
3.1.22.3 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.8.1 1.4.9 1.5.0 1.5.1 1.5.1.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6.0 1.6.10 1.6.11 1.6.12 1.6.13 1.6.15 1.6.5.1 1.6.8.8 1.6.9 1.6.9.1 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7.5 2.0.8.7 2.0.9.11 2.0.9.14 2.0.9.15 2.0.9.6 2.0.9.7 2.0.9.9 3.1.10.7 3.1.11.1 3.1.12.3 3.1.13.4 3.1.14.17 3.1.15.4 3.1.16.1 3.1.17.5 3.1.18.10 3.1.18.8 3.1.18.9 3.1.19.8 3.1.20.3 3.1.21.3 3.1.7.9 3.1.9.2 trunk 1.1.90 1.1.91 1.2.0 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2
backup / public / views / settings / maintenance.htm
backup / public / views / settings Last commit date
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>