From e96aa187c869b5d756d5a659f63734fee4dc7799 Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Thu, 17 Dec 2015 08:35:06 +0100 Subject: [PATCH] (proxy) fix authentication method other then local, missing acl usage --- src/opnsense/service/templates/OPNsense/Proxy/squid.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opnsense/service/templates/OPNsense/Proxy/squid.conf b/src/opnsense/service/templates/OPNsense/Proxy/squid.conf index 60dcc5aac..561a93999 100644 --- a/src/opnsense/service/templates/OPNsense/Proxy/squid.conf +++ b/src/opnsense/service/templates/OPNsense/Proxy/squid.conf @@ -250,7 +250,7 @@ http_access deny to_localhost # Access Permission configuration: # # Deny request from unauthorized clients -{% if helpers.exists('OPNsense.proxy.forward.authentication.method') and OPNsense.proxy.forward.authentication.method=='local' %} +{% if helpers.exists('OPNsense.proxy.forward.authentication.method') and OPNsense.proxy.forward.authentication.method != '' %} http_access allow local_auth {% endif %}