From 308ce66af56d4c07b637c27743761551b782b2e2 Mon Sep 17 00:00:00 2001 From: Takuya Ono Date: Sun, 9 Jun 2024 15:39:52 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20fix=20docker-compose=20ssrf=5Fpr?= =?UTF-8?q?oxy=20service=20WARNING:=20You=20should=20probably=20remove=20'?= =?UTF-8?q?::/0'=20from=20the=20ACL=20named=20'all'=20=20(#5005)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker/volumes/ssrf_proxy/squid.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/volumes/ssrf_proxy/squid.conf b/docker/volumes/ssrf_proxy/squid.conf index 3028bf35c6..be13d0e898 100644 --- a/docker/volumes/ssrf_proxy/squid.conf +++ b/docker/volumes/ssrf_proxy/squid.conf @@ -46,5 +46,5 @@ logfile_rotate 0 ################################## Reverse Proxy To Sandbox ################################ http_port 8194 accel vhost cache_peer sandbox parent 8194 0 no-query originserver -acl all src all -http_access allow all \ No newline at end of file +acl src_all src all +http_access allow src_all \ No newline at end of file