Skip to content

Commit

Permalink
terraform/jenkins: don't listen on port 80
Browse files Browse the repository at this point in the history
This should use tls-alpn-01 on port 443 just fine.
  • Loading branch information
flokli committed Dec 13, 2023
1 parent 9c55293 commit bbe3634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/jenkins/binary_cache.tf
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ resource "azurerm_network_security_group" "binary_cache_vm" {
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_ranges = [22, 80, 443]
destination_port_ranges = [22, 443]
source_address_prefix = "*"
destination_address_prefix = "*"
}
Expand Down

0 comments on commit bbe3634

Please sign in to comment.