@@ -12,6 +12,7 @@ database_uri = postgresql://opencve:opencve@postgres:5432/opencve
12
12
; see https://kombu.readthedocs.io/en/latest/userguide/connections.html#connection-urls
13
13
celery_broker_url = redis://redis:6379/0
14
14
celery_result_backend = redis://redis:6379/1
15
+ celery_lock_url = redis://redis:6379/2
15
16
16
17
; Display the static frontpage. If False the user will be redirect to the
17
18
; vulnerabilitites (CVE) page.
@@ -20,6 +21,9 @@ display_welcome = False
20
21
; Display the terms of service page.
21
22
display_terms = False
22
23
24
+ ; Include a HTML analytics code in all pages.
25
+ include_analytics = False
26
+
23
27
; Number of items to display in tables.
24
28
cves_per_page = 20
25
29
vendors_per_page = 20
@@ -34,6 +38,10 @@ activities_per_page = 20
34
38
; see https://werkzeug.palletsprojects.com/en/1.0.x/middleware/proxy_fix/
35
39
use_reverse_proxy = False
36
40
41
+ ; Cleanup the database by keeping the N last days of reports
42
+ ; Set the value to 0 to disable the cleanup
43
+ reports_cleanup_days = 0
44
+
37
45
; Display a reCAPTCHA form in register page.
38
46
display_recaptcha = False
39
47
recaptcha_site_key =
@@ -62,6 +70,7 @@ email_from = no-reply@opencve.io
62
70
smtp_server = <your_smtp_server>
63
71
smtp_port = 465
64
72
smtp_use_tls = True
73
+ smtp_use_ssl = False
65
74
smtp_username = <your_username>
66
75
smtp_password = <your_password>
67
76
0 commit comments