SQUID: How to disable authentication?

后端 未结 4 1797
甜味超标
甜味超标 2021-01-19 20:53

I have a working Squid with authentication. How do I temporarily disable authentication? Can I just comment out the following lines below from squid.conf:

acl ncsa_u

4条回答
  •  南方客
    南方客 (楼主)
    2021-01-19 21:37

    Try with:

    Comment:

    #acl ncsa_users proxy_auth REQUIRED
    #auth_param basic program /usr/lib/squid3/ncsa_auth /etc/squid3/passwd auth_param basic
    #children 5 auth_param basic realm Squid proxy-caching web server auth_param basic  
    #credentialstt1 2 hours auth_param basic casesensitive off
    

    And modify:

    http_access deny all
    

    to:

    http_access allow all 
    

提交回复
热议问题