container-server/setup/awall/http.json
Carsten Sprung c7ad424351 Working version on podman with awall
+ Add awall rule for http and https
+ Add awall policy for container bridge networks
+ Improve awall setup with symlinks
+ Fix path to docker-compose.yml in tasks
2022-11-23 21:44:02 +01:00

20 lines
403 B
JSON

{
"description": "Incoming HTTP/HTTPS (tcp/80+443)",
"filter": [
{
"in": "internet",
"out": "container",
"service": "http",
"match": "-m conntrack --ctorigdstport 80",
"action": "accept"
},
{
"in": "internet",
"out": "container",
"service": "https",
"match": "-m conntrack --ctorigdstport 443",
"action": "accept"
}
]
}