nghttpx: Better error message when private key and certificate are missing
This commit is contained in:
parent
e5b84fad09
commit
bf5eeb831b
|
@ -2780,8 +2780,9 @@ int process_options(Config *config,
|
||||||
|
|
||||||
if (ssl::upstream_tls_enabled(config->conn) &&
|
if (ssl::upstream_tls_enabled(config->conn) &&
|
||||||
(tlsconf.private_key_file.empty() || tlsconf.cert_file.empty())) {
|
(tlsconf.private_key_file.empty() || tlsconf.cert_file.empty())) {
|
||||||
print_usage(std::cerr);
|
LOG(FATAL) << "TLS private key and certificate files are required. "
|
||||||
LOG(FATAL) << "Too few arguments";
|
"Specify them in command-line, or in configuration file "
|
||||||
|
"using private-key-file and certificate-file options.";
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue