我尝试访问cntlm代理后面的localhost,它适用于localhost但不适用于localhost:8000(我将它用于内置于web服务器中的laravel)
curl localhost
完美地完成了上面的工作,但是当我使用端口8000 cntl给出" 502连接被拒绝"
curl localhost:8000
以下是结果:
<html><body><h1>502 Connection refused</h1><p><a href='http://cntlm.sf.net/'>Cntlm</a> proxy failed to complete the request.</p></body></html>
这是我的cntlm.conf
....
NoProxy localhost,localhost:8080, 127.0.0.*, 10.*, 192.168.*, 172.19.14.*
有人可以告诉我如何使cntlm代理忽略我的localhost:8000就像忽略localhost一样?
任何帮助都会非常感激。
答案 0 :(得分:2)
您是否尝试将其设置为NoProxy?
NoProxy localhost,localhost:8080,localhost:8000, 127.0.0.*, 10.*, 192.168.*, 172.19.14.*