Uses HTTP scheme which means domain name is not encrypted!
Connecting to the proxy is done by using the provided Chrome Extensions.
Inside ChromeExtension/
Load the extension in your chrome browser. After that you can click the icon and configure the proxy.
Note that you can connect to any proxy that uses the HTTP scheme.
Inside ProxyServer/
How to run:
cargo runThe main function simply wraps the proxy server library.
mod proxy;
use proxy::ProxyServer;
fn main() {
let mut proxyserver = ProxyServer::new("0.0.0.0:12345");
proxyserver.allow("127.0.0.1"); // Default all IP's are allowed.
proxyserver.run();
}