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

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

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
```