diff options
Diffstat (limited to 'monitor/gaol/gaol_conf.py')
-rw-r--r-- | monitor/gaol/gaol_conf.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/monitor/gaol/gaol_conf.py b/monitor/gaol/gaol_conf.py new file mode 100644 index 0000000..7019989 --- /dev/null +++ b/monitor/gaol/gaol_conf.py @@ -0,0 +1,29 @@ + # All configuration for the CT monitor is done from this file! + +# interval (in seconds) between updates +INTERVAL = 60 + +# Directories for various output files +OUTPUT_DIR = "output/" + +# Some strings +ERROR_STR = "ERROR: " +EMAIL_SUBJECT = "GAOL" + +# Email addresses for error messages +EMAIL_ADDR = [ +"josef@nordu.net", +] + +# CT logs and associated keys +CTLOGS = [ + {"name" : "gaol", + "url" : "https://gaol.ct.nordu.net/open/", + "key" : "MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEE0E7UyZA2XkTJC2Rlcx0DbXkI1Y0+2OgoJQ0O+pwtVRCiVGHdU08i4m8MKx2r8FWbpHVgt6V0rLS8rYBErfSVA==", + "id" : "5WUP4zAPa2LwNM1oepj+x7cM8LlqB4fstdOMzzj4MzM=", + "build" : False}, +] + + + + |