nginx 실전 (5) 에이전트 지원 https

1709 단어 https대리nginx
머리말
정방 향 프 록 시 란 내부 네트워크 사용자 가 프 록 시 서버 의 IP 와 포트 를 설정 하여 공공 네트워크 에 접근 하 는 접근 방식 을 말한다 (https://baike.baidu.com/item/정방 향 에이전트 / 9524799)
nginx 자체 의 proxy 도 정방 향 프 록 시 기능 을 실현 할 수 있 지만 https 는 지원 되 지 않 기 때문에 저 는 ngx 를 선 택 했 습 니 다.http_proxy_connect_모듈 모듈
ngx 추가http_proxy_connect_모듈 모듈
nginx 기초 환경 컴 파일 링 nginx 실전 (1)
yum -y install patch
git clone https://github.com/chobits/ngx_http_proxy_connect_module.git
cd openresty-1.13.6.2
./configure --add-module=../ngx_http_proxy_connect_module
patch -d build/nginx-1.13.6/ -p 1 < ../ngx_http_proxy_connect_module/patch/proxy_connect_rewrite_1014.patch
gmake && gmake install

에이전트 설정
cat>proxy_connect.conf<

클 라 이언 트 에이전트 설정
 
linux
cat >>/etc/profile<

docker 프 록 시 설정
vim /lib/systemd/system/docker.service
Environment="HTTP_PROXY=http://172.17.0.16:8080/" "HTTPS_PROXY=https://172.17.0.16:8080/"

레 퍼 런 스
https://github.com/chobits/ngx_http_proxy_connect_module

좋은 웹페이지 즐겨찾기