Your ROOT_URL in app.ini is unix://git.lalonde.me:3000/ but you are visiting https://git.lalonde.me/matth/fw-daemon/commit/755e0088c5b41d7d48e5bdcb3c9d2c7794d9b956
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
4 deletions
@ -587,7 +587,7 @@ func GetRealRoot(pathname string, pid int) string {
if lnk == "/" {
return pathname
}
if strings . HasPrefix ( pathname , lnk ) {
return pathname [ len ( lnk ) : ]
}
@ -638,7 +638,7 @@ func LookupSandboxProc(srcip net.IP, srcp uint16, dstip net.IP, dstp uint16, pro
} else if proto == "icmp" {
res = procsnitch . LookupICMPSocketProcessAll ( srcip , dstip , icode , rlines )
} else {
fmt . Printf ( "unknown proto: %s" , proto )
fmt . Printf ( "unknown proto: %s" , proto )
}
if res != nil {
@ -646,8 +646,7 @@ func LookupSandboxProc(srcip net.IP, srcp uint16, dstip net.IP, dstp uint16, pro
res . Sandbox = OzInitPids [ i ] . Name
res . ExePath = GetRealRoot ( res . ExePath , OzInitPids [ i ] . Pid )
break
}
else {
} else {
fmt . Printf ( "Couldn't find sandbox name.\n" )
}
}