Skip to content

Commit

Permalink
Merge pull request #51 from remind101/fix_non_ssl_emp_run
Browse files Browse the repository at this point in the history
Need TCP mode ELB for emp run
  • Loading branch information
phobologic committed Jul 31, 2015
2 parents 6a1690a + 0d7472c commit 599d405
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stacker/blueprints/empire/empire_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@ def create_security_groups(self):
def setup_listeners(self):
no_ssl = [elb.Listener(
LoadBalancerPort=80,
Protocol='HTTP',
Protocol='TCP',
InstancePort=8080,
InstanceProtocol='HTTP'
InstanceProtocol='TCP'
)]

cert_id = Join("", [
Expand Down

0 comments on commit 599d405

Please sign in to comment.