#!/usr/sbin/nft -f # # !!! This file is managed by Ansible !!! # table inet firewall { chain inbound { # Allow http(s). tcp dport http accept comment "nginx: http" tcp dport https accept comment "nginx: https" } }