반응형
CURL로 PAC(proxy auto config script) 호출 테스트
proxy-pac-proxy 설치
npm install -g proxy-pac-proxy
PAC URI 변수 등록
export PROXYPACPROXY_URL=http://control.sangcheol.kr/proxy.pac
PROXY-PAC-PROXY START
proxy-pac-proxy start
$ proxy-pac-proxy start
Proxy succesfully started.
CURL로 호출하고 HTTP status code 확인
curl -s -o /dev/null -w "%{http_code}" "http://cms.sangcheol.kr"
$ curl -s -o /dev/null -w "%{http_code}" "http://cms.sangcheol.kr"
200
PROXY-PAC-PROXY STOP
proxy-pac-proxy stop
$ proxy-pac-proxy stop
Proxy successfully stopped.
CURL로 호출하고 HTTP status code 확인
curl -s -o /dev/null -w "%{http_code}" "http://cms.sangcheol.kr"
$ curl -s -o /dev/null -w "%{http_code}" "http://cms.sangcheol.kr"
000
참고URL
- proxy-pac-proxy -https://developer.aliyun.com/mirror/npm/package/proxy-pac-proxy
- pactester - http://manpages.ubuntu.com/manpages/bionic/man1/pactester.1.html
- [Shell] curl로 호출하고 HTTP status code 확인하기- https://blog.leocat.kr/notes/2018/08/03/shell-fetch-http-status-code-from-curl-result
728x90
반응형
'맥(솔라리스)' 카테고리의 다른 글
macOS에서 Terraforming을 설치하는 방법 (0) | 2023.08.20 |
---|---|
Oh My Zsh 에러 (0) | 2023.06.27 |
Mac M1(ARM 아키텍처)에서 Go(Golang)를 설치하는 방법 (0) | 2023.06.06 |
Mac에서 Oh My Zsh를 수동으로 업데이트하는 방법 (0) | 2023.06.06 |
macOS에서 mDNSResponder를 재시작하고 DNS 캐시를 갱신 (0) | 2023.06.04 |