mirror of
https://github.com/status-im/infra-faucet.git
synced 2025-02-24 16:48:54 +00:00
25 lines
515 B
YAML
25 lines
515 B
YAML
---
|
|
- name: Enable geth port
|
|
iptables:
|
|
comment: 'Enable geth'
|
|
action: insert
|
|
chain: DOCKER-USER
|
|
jump: ACCEPT
|
|
source: '0.0.0.0/0'
|
|
protocol: tcp
|
|
destination_port: '{{ faucet_geth_main_port }}'
|
|
notify:
|
|
- Save iptables rules
|
|
|
|
- name: Enable faucet HTTP port
|
|
iptables:
|
|
comment: 'Enable faucet'
|
|
action: insert
|
|
chain: DOCKER-USER
|
|
jump: ACCEPT
|
|
source: '0.0.0.0/0'
|
|
protocol: tcp
|
|
destination_port: '{{ faucet_http_port }}'
|
|
notify:
|
|
- Save iptables rules
|