Open the right ports so web traffic will flow
This commit is contained in:
parent
cf0e718bfb
commit
ceb62cc0c8
1 changed files with 18 additions and 0 deletions
|
@ -40,4 +40,22 @@ resource "linode_firewall" "decker" {
|
||||||
ipv4 = ["0.0.0.0/0"]
|
ipv4 = ["0.0.0.0/0"]
|
||||||
ipv6 = ["::/0"]
|
ipv6 = ["::/0"]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inbound {
|
||||||
|
label = "allow-inbound-https"
|
||||||
|
action = "ACCEPT"
|
||||||
|
protocol = "TCP"
|
||||||
|
ports = "443"
|
||||||
|
ipv4 = ["0.0.0.0/0"]
|
||||||
|
ipv6 = ["::/0"]
|
||||||
|
}
|
||||||
|
|
||||||
|
inbound {
|
||||||
|
label = "allow-inbound-http"
|
||||||
|
action = "ACCEPT"
|
||||||
|
protocol = "TCP"
|
||||||
|
ports = "80"
|
||||||
|
ipv4 = ["0.0.0.0/0"]
|
||||||
|
ipv6 = ["::/0"]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue