Technotes

Technotes for future me

add iptable rule

- name: Add iptables Port 80 nginx Rule
  iptables:
    chain: INPUT
    jump: ACCEPT
    protocol: tcp
    destination_port: 80
    comment: 'Accept all nginx traffic'
Last updated on 31 Jan 2021
Published on 11 Dec 2019
Edit on GitHub