Your ROOT_URL in app.ini is unix://git.lalonde.me:3000/ but you are visiting https://git.lalonde.me/matth/fw-daemon/commit/7c657b9f53b2fbd68fb63e33fd5b0b16deeb39d8?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix sandbox rule evaluation from policy file bug after fw-daemon start

shw-merge
dma 8 years ago
parent 972f733b63
commit 7c657b9f53

@ -98,7 +98,7 @@ func (r *Rule) AddrString(redact bool) string {
type RuleList []*Rule
func (r *Rule) match(src net.IP, dst net.IP, dstPort uint16, hostname string, proto string, uid, gid int, uname, gname string, sandbox string) bool {
if r.sandbox != sandbox {
if r.policy.sandbox != sandbox {
return false
}
if r.proto != proto {

Loading…
Cancel
Save