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

Start socks server right before running the blocking runFilter()

pull/19/head
David Stainton 9 years ago
parent 5ea1977322
commit 28e89eb149

@ -168,5 +168,14 @@ func main() {
}() }()
*/ */
socksConfig := SocksChainConfig{
TargetSocksNet: "tcp",
TargetSocksAddr: "127.0.0.1:9050",
ListenSocksNet: "tcp",
ListenSocksAddr: "127.0.0.1:8850",
}
wg := sync.WaitGroup{}
InitSocksListener(&socksConfig, &wg)
fw.runFilter() fw.runFilter()
} }

Loading…
Cancel
Save