diff options
Diffstat (limited to 'scripts/irdbd.py')
-rwxr-xr-x | scripts/irdbd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/irdbd.py b/scripts/irdbd.py index 1d79e875..116c6af6 100755 --- a/scripts/irdbd.py +++ b/scripts/irdbd.py @@ -99,7 +99,7 @@ cur = db.cursor() cms_ta = rpki.x509.X509(Auto_file = cfg.get("cms-ta")) cms_key = rpki.x509.RSA(Auto_file = cfg.get("cms-key")) -cms_certs = rpki.x509.X509_chain(Auto_files = cfg.multiget("cms-cert")) +cms_certs = rpki.x509.X509_chain(Auto_files = cfg.multiget("cms-certs")) u = urlparse.urlparse(cfg.get("https-url")) @@ -111,7 +111,7 @@ assert u.scheme in ("", "https") and \ u.fragment == "" rpki.https.server(privateKey = rpki.x509.RSA(Auto_file = cfg.get("https-key")), - certChain = rpki.x509.X509_chain(Auto_files = cfg.multiget("https-cert")), + certChain = rpki.x509.X509_chain(Auto_files = cfg.multiget("https-certs")), host = u.hostname or "localhost", port = u.port or 443, handlers = ((u.path, handler),)) |