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.
1 changed files with
8 additions and
4 deletions
@ -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 , x509ValidationErro r)
} 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 , x509ValidationErro r)
}
return
} else {
} / * else {
log . Notice ( "TLSGuard approved certificate presented for connection to: " , dest )
}
} * /
}
var wg sync . WaitGroup