--- - name: Install dependencies apt: name: php-fpm state: present - import_tasks: ../../../snippets/common-nginx.yaml - name: Install security.txt template: src: security.txt dest: /opt/security.txt owner: root group: root mode: 0644 - name: Allow HTTP/HTTPS iptables: chain: INPUT protocol: tcp destination_port: "{{ item.port }}" ctstate: NEW jump: ACCEPT ip_version: "{{ item.ip }}" action: insert with_items: - { ip: ipv4, port: 80 } - { ip: ipv4, port: 443 } - { ip: ipv6, port: 80 } - { ip: ipv6, port: 443 } notify: persist iptables