Tried adding proper IPv6 support

gitea-rework
Jef Roosens 2021-12-16 10:18:17 +01:00
parent 868acbc08f
commit c5dc3db2be
Signed by: Jef Roosens
GPG Key ID: B580B976584B5F30
2 changed files with 12 additions and 1 deletions

View File

@ -2,5 +2,7 @@
"metrics-addr" : "0.0.0.0:9323",
"experimental" : true,
"mtu": 1450,
"network-control-plane-mtu": 1450
"network-control-plane-mtu": 1450,
"ipv6": true,
"fixed-cidr-v6": "fd00::/80"
}

View File

@ -34,6 +34,15 @@
- 4789 # overlay network traffic
- 9001 # Portainer communication
# - name: Open up ports for proper IPv6 service communication
# community.general.ufw:
# rule: allow
# port: "{{ item }}"
# loop:
# - 80 # HTTP
# - 443 # HTTPS
# - 8000 # Portainer edge communication
- name: Block everything else by default & enable firewall.
community.general.ufw:
default: deny