Skip to content

Commit

Permalink
fixing port
Browse files Browse the repository at this point in the history
  • Loading branch information
kammerdiener committed Jan 19, 2023
1 parent 893a077 commit 37bb734
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infra/ceramic-mainnet/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export const frontendUrlEcs = pulumi.interpolate`http://${httpListener.endpoint.
const target = alb.createTargetGroup("gitcoin-dpopp-ceramic", {
vpc,
port: 80,
healthCheck: { path: "/api/v0/node/healthcheck", unhealthyThreshold: 3, port: "8011", interval: 60, timeout: 30, healthyThreshold: 2 },
healthCheck: { path: "/api/v0/node/healthcheck", unhealthyThreshold: 3, port: "80", interval: 60, timeout: 30, healthyThreshold: 2 },
});

// Listen to traffic on port 443 & route it through the Ceramic target group
Expand Down

0 comments on commit 37bb734

Please sign in to comment.