diff options
Diffstat (limited to 'rpkid/irdbd.py')
-rwxr-xr-x | rpkid/irdbd.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/rpkid/irdbd.py b/rpkid/irdbd.py index 18c75bff..5b8c72a3 100755 --- a/rpkid/irdbd.py +++ b/rpkid/irdbd.py @@ -124,9 +124,9 @@ assert u.scheme in ("", "https") and \ u.query == "" 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")), - x509TrustList = rpki.x509.X509_chain(Auto_files = cfg.multiget("https-ta")), - host = u.hostname or "localhost", - port = u.port or 443, - handlers = ((u.path, handler),)) +rpki.https.server(server_key = rpki.x509.RSA(Auto_file = cfg.get("https-key")), + server_certs = rpki.x509.X509_chain(Auto_files = cfg.multiget("https-cert")), + client_ta = rpki.x509.X509_chain(Auto_files = cfg.multiget("https-ta")), + host = u.hostname or "localhost", + port = u.port or 443, + handlers = ((u.path, handler),)) |