Skip to content

Latest commit

 

History

History
95 lines (64 loc) · 2.4 KB

README.md

File metadata and controls

95 lines (64 loc) · 2.4 KB

Squid-Proxy-with-Auth-Caching-Another-Proxy

Introduction

Dockerfile to create a Docker container image for Squid proxy server.

Squid is a caching proxy for the Web supporting HTTP, HTTPS, FTP, and more. It reduces bandwidth and improves response times by caching and reusing frequently-requested web pages. Squid has extensive access controls and makes a great server accelerator.

Getting started

Environment variables

  • SQUID_USERNAME
  • SQUID_PASSWORD
  • CACHE_PEER

Ports

  • 3128

Volumes

  • /var/log/squid3

Installation

A simple Dockerfile for launching an authenticated squid proxy with option to forward the squid proxy to another proxy with or without authentication. This scenario comes valid when user is behind the corporate proxy

The user must specify authentication credentials via the following environment variables:

SQUID_USERNAME=foo
SQUID_PASSWORD=bar
CACHE_PEER=user:[email protected]:8080

Clone the Repo:

git clone https://github.com/dockerworxinc/Squid-Proxy-with-Auth.git

Build the image:

cd Squid-Proxy-with-Auth
docker build -t dockerworx/docker-squid .

Usage:

 docker run -d --name="docker-squid" \
            -e SQUID_USERNAME=foo -e SQUID_PASSWORD=bar \
           [-e "CACHE_PEER=user:[email protected]:8080"] \
            -p <HostPort>:3128 dockerworx/docker-squid
  • Set CACHE_PEER to an url of your parent (upstream) proxy. Supports login authentication.

Examples:

 docker run -d --name="docker-squid" -p 3128:3128 \
            -e SQUID_USERNAME=foo -e SQUID_PASSWORD=bar \
            -e "CACHE_PEER=user:p%42ssword@otherproxy:8080" \
            dockerworx/docker-squid

Configuration

Squid is a full featured caching proxy server and a large number of configuration parameters. To configure Squid as per your requirements mount your custom configuration at /etc/squid3/squid.conf.

docker run --name squid -d \
  --publish 3128:3128 \
  --volume squid.conf:/etc/squid3/squid.conf \
  dockerworx/docker-squid

Ideas for Improvement

  • Output logs to stdout.
  • The range of authentication options could be expanded through more configuration options.
  • Supply a full configuration file that has been well considered for mutiple options handled either in config or init file