Carsten Sprung
c7ad424351
+ 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
20 lines
403 B
JSON
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"
|
|
}
|
|
]
|
|
}
|