Enforce certificate zones before anything else.

This commit is contained in:
Solderpunk 2020-07-01 14:16:27 +02:00
parent 4ae154faed
commit f291e5863c
1 changed files with 4 additions and 4 deletions

View File

@ -78,14 +78,14 @@ func handleGeminiRequest(conn net.Conn, config Config, accessLogEntries chan Log
parseMollyFiles(path, &config, errorLogEntries)
}
// Check for redirects
handleRedirects(URL, config, conn, &log)
// Check whether this URL is in a certificate zone
handleCertificateZones(URL, clientCerts, config, conn, &log)
if log.Status != 0 {
return
}
// Check whether this URL is in a certificate zone
handleCertificateZones(URL, clientCerts, config, conn, &log)
// Check for redirects
handleRedirects(URL, config, conn, &log)
if log.Status != 0 {
return
}