https://github.com/jonathanporta/squid-proxy-config
https://github.com/jonathanporta/squid-proxy-config
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jonathanporta/squid-proxy-config
- Owner: JonathanPorta
- Created: 2016-06-29T11:32:19.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-29T11:46:28.000Z (almost 10 years ago)
- Last Synced: 2025-01-24T19:36:55.805Z (over 1 year ago)
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Squid Proxy Config
Quick notes on getting a Squid proxy up and running on a dev Fedora 24 box. This is not secure and shouldn't be used in production or left unattended on the wild-wild-webs.
### Installation
1. Install Squid and a basic auth tool on Fedora:
```
$ dnf -y install squid httpd-tools
```
2. Create a new `.htpasswd` and a user named `heroku`:
```
$ htpasswd -c /etc/squid/.htpasswd heroku
```
3. Replace ` /etc/squid/squid.conf` with the `squid.conf` in this repo.
4. Enable the squid service:
```
$ systemctl enable squid.service
```
5. Start the squid service:
```
$ systemctl enable squid.service
```
6. Profit.
### Useful Links
- [Squid on Fedora Notes](http://www.server-world.info/en/note?os=Fedora_24&p=squid&f=3)
- [Official Docs](http://www.squid-cache.org/Doc/man/)