Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robhaswell/squid-docker-simple-auth
https://github.com/robhaswell/squid-docker-simple-auth
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/robhaswell/squid-docker-simple-auth
- Owner: robhaswell
- License: apache-2.0
- Created: 2014-10-17T13:11:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-11-30T14:16:59.000Z (about 5 years ago)
- Last Synced: 2023-03-24T07:43:41.075Z (almost 2 years ago)
- Language: Shell
- Size: 119 KB
- Stars: 15
- Watchers: 1
- Forks: 31
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
squid-docker-simple-auth
========================A simple (and fragile) Dockerfile for launching an authenticated squid proxy.
The user must specify authentication credentials via the following environment variables:
```
SQUID_USERNAME=foo
SQUID_PASSWORD=bar
```An example invocation would be:
```
docker run -e SQUID_USERNAME=foo -e SQUID_PASSWORD=bar -p 3128:3128 robhaswell/squid-authenticated
```Details
=======Environment variables
---------------------* SQUID_USERNAME
* SQUID_PASSWORDPorts
-----* 3128
Volumes
-------* `/var/log/squid3`
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 instead of hacking up Ubuntu's defaults.