Make documentation on iptables for local installation clearer. (#575)

This commit is contained in:
Christopher De Vries 2017-05-31 05:56:17 -07:00 committed by Dan Guido
parent d59d67f0ea
commit 87e1282ebb
2 changed files with 7 additions and 1 deletions

View file

@ -51,6 +51,12 @@ Required variables:
- server_user
- IP_subject_alt_name
Note that by default, the iptables rules on your existing server will be overwritten. If you don't want to overwrite the iptables rules, you can use the `--skip-tags iptables` flag, for example:
```shell
ansible-playbook deploy.yml -t local,vpn --skip-tags iptables -e 'server_ip=172.217.2.238 server_user=algo IP_subject_alt_name=172.217.2.238'
```
### Digital Ocean
Required variables:

View file

@ -13,4 +13,4 @@ git clone https://github.com/trailofbits/algo
cd algo && ./algo
```
**Warning**: If you run Algo on your existing server, the iptables rules will be overwritten. If you don't want to overwrite the rules, you must deploy via `ansible-playbook` and skip the `iptables` tag as described below.
**Warning**: If you run Algo on your existing server, the iptables rules will be overwritten. If you don't want to overwrite the rules, you must deploy via `ansible-playbook` and skip the `iptables` tag as described in [deploy-from-ansible.md](deploy-from-ansible.md).