https://github.com/manics/squid-restricted-http-proxy
Helm chart for a restricted Squid HTTP proxy
https://github.com/manics/squid-restricted-http-proxy
helm helm-chart kubernetes proxy squid
Last synced: about 1 year ago
JSON representation
Helm chart for a restricted Squid HTTP proxy
- Host: GitHub
- URL: https://github.com/manics/squid-restricted-http-proxy
- Owner: manics
- Created: 2018-08-17T15:18:51.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-17T15:27:43.000Z (almost 8 years ago)
- Last Synced: 2025-02-28T03:41:59.565Z (over 1 year ago)
- Topics: helm, helm-chart, kubernetes, proxy, squid
- Language: Smarty
- Size: 3.91 KB
- Stars: 6
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Squid Restricted HTTP Proxy
Squid proxy for restricting external HTTP access.
This is designed for internal use by Kubernetes applications, and includes a service but not an ingress.
## Example usage
helm upgrade --install squid . --debug --namespace squid
# Start an interactive shell
kubectl run my-shell --rm -i --tty --image=ubuntu --restart=Never \
--env=http_proxy=http://squid-squid-restricted-http-proxy.squid:3128 \
--env=https_proxy=http://squid-squid-restricted-http-proxy.squid:3128 \
sh
# This HEAD request should work
curl -I https://www.openmicroscopy.org
# This HEAD request should fail
curl -I https://www.dundee.ac.uk