mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-05 05:27:40 +03:00
chore: improve comments
This commit is contained in:
parent
9752347073
commit
dc1f58414a
1 changed files with 2 additions and 1 deletions
|
@ -255,7 +255,8 @@ func (c *serverConfig) fillTLSConfig(hyConfig *server.Config) error {
|
||||||
if c.TLS.Cert == "" || c.TLS.Key == "" {
|
if c.TLS.Cert == "" || c.TLS.Key == "" {
|
||||||
return configError{Field: "tls", Err: errors.New("empty cert or key path")}
|
return configError{Field: "tls", Err: errors.New("empty cert or key path")}
|
||||||
}
|
}
|
||||||
// Load cert-key pair here for early error reporting (especially permission denied)
|
// Try loading the cert-key pair here to catch errors early
|
||||||
|
// (e.g. invalid files or insufficient permissions)
|
||||||
certPEMBlock, err := os.ReadFile(c.TLS.Cert)
|
certPEMBlock, err := os.ReadFile(c.TLS.Cert)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return configError{Field: "tls.cert", Err: err}
|
return configError{Field: "tls.cert", Err: err}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue