Skip to content

Commit

Permalink
Merge pull request #95 from CSSE6400/86
Browse files Browse the repository at this point in the history
getting it accessible on port 80
  • Loading branch information
86LAK authored May 22, 2024
2 parents 6409dd9 + b7da2a6 commit e90c6b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ resource "aws_security_group" "unibasement_frontend" {
description = "unibasement Security Group"

ingress {
from_port = 3000
to_port = 3000
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
Expand Down Expand Up @@ -537,7 +537,7 @@ resource "aws_lb_listener" "unibasement_backend" {

resource "aws_lb_listener" "unibasement" {
load_balancer_arn = aws_lb.unibasement.arn
port = "3000"
port = "80"
protocol = "HTTP"

default_action {
Expand Down

0 comments on commit e90c6b3

Please sign in to comment.