Last active
June 4, 2024 11:58
-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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