An open API service indexing awesome lists of open source software.

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

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