mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 13:47:39 +03:00
Certificates that can't be loaded are fatal
This commit is contained in:
parent
2670caa71e
commit
315f6f45ff
2 changed files with 2 additions and 2 deletions
|
@ -407,7 +407,7 @@ func fetchDoHServerInfo(proxy *Proxy, name string, stamp stamps.ServerStamp, isN
|
|||
dohClientCreds, ok = (*proxy.dohCreds)["*"]
|
||||
}
|
||||
if ok {
|
||||
dlog.Noticef("[%s] Cert: %s, Key: %s", name, dohClientCreds.clientCert, dohClientCreds.clientKey)
|
||||
dlog.Noticef("Enabling TLS authentication for [%s]", name)
|
||||
proxy.xTransport.tlsClientCreds = dohClientCreds
|
||||
proxy.xTransport.rebuildTransport()
|
||||
}
|
||||
|
|
|
@ -162,7 +162,7 @@ func (xTransport *XTransport) rebuildTransport() {
|
|||
if (clientCreds != DOHClientCreds{}) {
|
||||
cert, err := tls.LoadX509KeyPair(clientCreds.clientCert, clientCreds.clientKey)
|
||||
if err != nil {
|
||||
dlog.Error(err)
|
||||
dlog.Fatalf("Unable to use certificate [%v] (key: [%v]): %v", clientCreds.clientCert, clientCreds.clientKey, err)
|
||||
}
|
||||
tlsClientConfig.Certificates = []tls.Certificate{cert}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue