Skip to content

Instantly share code, notes, and snippets.

@peterblazejewicz
Last active June 4, 2024 11:58
Show Gist options
  • Save peterblazejewicz/58f3f631ea104163cf1bbabc2b68778a to your computer and use it in GitHub Desktop.
Save peterblazejewicz/58f3f631ea104163cf1bbabc2b68778a to your computer and use it in GitHub Desktop.
Squid todo (configure passwords and run on Windows through Docker with Lixux containers) and call example.com through proxy using curl (or similar)
FROM alpine:3.20
RUN apk -U add --no-cache squid
COPY squid.conf /etc/squid/squid.conf
COPY passwords /etc/squid/passwords
EXPOSE 3128/tcp
ENTRYPOINT ["squid", "-N", "-d1"]
auth_param basic program /usr/lib/squid/basic_ncsa_auth /etc/squid/passwords
auth_param basic realm proxy
acl authenticated proxy_auth REQUIRED
http_access allow authenticated
http_access deny all
http_port 3128
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment