![프록시를 사용할 때 컬이 웹사이트에 액세스할 수 없는 이유](https://linux55.com/image/218070/%ED%94%84%EB%A1%9D%EC%8B%9C%EB%A5%BC%20%EC%82%AC%EC%9A%A9%ED%95%A0%20%EB%95%8C%20%EC%BB%AC%EC%9D%B4%20%EC%9B%B9%EC%82%AC%EC%9D%B4%ED%8A%B8%EC%97%90%20%EC%95%A1%EC%84%B8%EC%8A%A4%ED%95%A0%20%EC%88%98%20%EC%97%86%EB%8A%94%20%EC%9D%B4%EC%9C%A0.png)
저는 macOS 13을 사용하고 있으며 터미널에서 다음과 같이 프록시를 설정합니다.
➜ depot_tools git:(d9e2d479) env|grep all_proxy
all_proxy=socks5://127.0.0.1:7890
그런 다음 다음과 같이 컬 명령을 사용합니다.
➜ depot_tools git:(d9e2d479) curl -L -v https://www.facebook.com
* Uses proxy env variable all_proxy == 'socks5://127.0.0.1:7890'
* Trying 127.0.0.1:7890...
* SOCKS5 connect to IPv4 31.13.76.99:443 (locally resolved)
* SOCKS5 request granted.
* Connected to (nil) (127.0.0.1) port 7890 (#0)
* ALPN: offers h2
* ALPN: offers http/1.1
* CAfile: /etc/ssl/cert.pem
* CApath: none
* (304) (OUT), TLS handshake, Client hello (1):
* LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to www.facebook.com:443
* Closing connection 0
curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to www.facebook.com:443
127.0.0.1:7890
Google 크롬에서 Facebook에 액세스하는 데 사용할 수 있기 때문에 작동한다고 확신합니다 . 제가 뭔가 놓치고 있는 것이 있나요? 이 문제를 해결할 수 있나요?