HTTPS connections over proxy servers

前端 未结 9 1051
你的背包
你的背包 2020-11-28 18:48

Is it possible to have HTTPS connections over proxy servers? If yes, what kind of proxy server allows this?

Duplicated with How to use Socks 5 proxy with Apache HTT

9条回答
  •  遥遥无期
    2020-11-28 19:36

    tunneling HTTPS through SSH (linux version):

    1) turn off using 443 on localhost
    2) start tunneling as root: ssh -N login@proxy_server -L 443:target_ip:443
    3) adding 127.0.0.1 target_domain.com to /etc/hosts
    

    everything you do on localhost. then:

    target_domain.com is accessible from localhost browser.
    

提交回复
热议问题