Your ROOT_URL in app.ini is unix://git.lalonde.me:3000/ but you are visiting https://git.lalonde.me/matth/fw-daemon/commit/96061fb18d215971761d32f550e861c5cab193b4 You should set ROOT_URL correctly, otherwise the web may not work correctly.

More redaction and less noise

master
dma 8 years ago
parent 13d2e049c7
commit 96061fb18d

@ -410,15 +410,19 @@ func (c *socksChainSession) forwardTraffic(tls bool) {
}
if err != nil {
x509ValidationError := STR_REDACTED
if !FirewallConfig.LogRedact {
x509ValidationError = err.Error()
}
if c.pinfo.Sandbox != "" {
log.Errorf("TLSGuard violation: Dropping traffic from %s (sandbox: %s) to %s: %v", c.pinfo.ExePath, c.pinfo.Sandbox, dest, err)
log.Errorf("TLSGuard violation: Dropping traffic from %s (sandbox: %s) to %s: %s", c.pinfo.ExePath, c.pinfo.Sandbox, dest, x509ValidationError)
} else {
log.Errorf("TLSGuard violation: Dropping traffic from %s (unsandboxed) to %s: %v", c.pinfo.ExePath, dest, err)
log.Errorf("TLSGuard violation: Dropping traffic from %s (unsandboxed) to %s: %s", c.pinfo.ExePath, dest, x509ValidationError)
}
return
} else {
} /*else {
log.Notice("TLSGuard approved certificate presented for connection to: ", dest)
}
} */
}
var wg sync.WaitGroup

Loading…
Cancel
Save