https://github.com/bsedin/ansible-shadowsocks
https://github.com/bsedin/ansible-shadowsocks
ansible ansible-role docker proxy shadowsocks socks5
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bsedin/ansible-shadowsocks
- Owner: bsedin
- License: mit
- Created: 2018-06-08T09:43:29.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-08T11:10:11.000Z (about 8 years ago)
- Last Synced: 2025-06-03T09:19:46.378Z (about 1 year ago)
- Topics: ansible, ansible-role, docker, proxy, shadowsocks, socks5
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# shadowsocks-libev SOCKS5 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-shadowsocks.git library/shadowsocks
```
Use role:
```yaml
---
- hosts: infra01.yourserver.io
remote_user: ansible
become: true
roles:
- shadowsocks
```