How do I plug BloatFE into Tor?
I run my bloat in a container on my pc. I guess I need to make it somehow use the tor router on the host, so it hits the APIs via tor.
Then I need to view the html. The pages are local, but the media just point to the instance. I use a PAC file that says no proxy for anything local, otherwise use tor. I can see it works, will that be fine?
The PAC file, for the ambitious:
function FindProxyForURL(url, host) { if ( isInNet(host, "10.0.3.84", "255.255.255.0") ) { return "DIRECT"; } return "SOCKS5 localhost:9050"; }