I am using Jetty\'s ProxyServlet as a HTTP proxy.
After I start the server and add the socks proxy in firefox I can access websites through the proxy without any pro
ZmK's answer is simply a copy of the example from Jetty repositories and does not even work.
Jetty by default does not have an HTTPS Proxy. The AsyncProxyServlet and ProxyServlet classes only do HTTP proxy. In order for you to do an HTTPS proxy, do the following:
Here is the code example in detail: https://github.com/k2k2e6/jettyHttpsProxy