1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-12-22 09:00:10 +00:00

Crash on SSL cert/key error, describe issue in log

if serving ssl/tls fails, the cert/key files are checked to see if they
    are accessible, and any errors logged.
This commit is contained in:
Harvey Tindall 2023-12-24 19:03:40 +00:00
parent 2be7baea4a
commit b75bd4d6c5
Signed by: hrfee
GPG Key ID: BBC65952848FB1A2

11
main.go
View File

@ -557,7 +557,16 @@ func start(asDaemon, firstCall bool) {
cert := app.config.Section("advanced").Key("tls_cert").MustString("")
key := app.config.Section("advanced").Key("tls_key").MustString("")
if err := SRV.ListenAndServeTLS(cert, key); err != nil {
app.err.Printf("Failure serving: %s", err)
filesToCheck := []string{cert, key}
fileNames := []string{"Certificate", "Key"}
for i, v := range filesToCheck {
_, err := os.Stat(v)
if err != nil {
app.err.Printf("SSL/TLS %s: %v\n", fileNames[i], err)
}
}
app.err.Fatalf("Failure serving with SSL/TLS: %s", err)
}
} else {
if err := SRV.ListenAndServe(); err != nil {