https://github.com/bsedin/ansible-squid
Squid http proxy server role for ansible
https://github.com/bsedin/ansible-squid
ansible ansible-role docker http-proxy proxy squid squid-proxy
Last synced: about 1 year ago
JSON representation
Squid http proxy server role for ansible
- Host: GitHub
- URL: https://github.com/bsedin/ansible-squid
- Owner: bsedin
- License: mit
- Created: 2018-04-21T16:10:40.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-21T19:03:17.000Z (about 8 years ago)
- Last Synced: 2025-02-09T01:17:41.589Z (over 1 year ago)
- Topics: ansible, ansible-role, docker, http-proxy, proxy, squid, squid-proxy
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Squid http proxy server role for ansible
Create `./library` directory in your ansible project:
```
mkdir ./library
```
And configure `ansible.cfg`:
```
[defaults]
roles_path = ./library
```
Add submodule:
```
git submodule add git@github.com:kressh/ansible-squid.git library/squid
```
Use role:
```yaml
---
- hosts: infra01.yourserver.io
remote_user: ansible
become: true
roles:
- squid
```