Marcin_S
Marcin_S

Reputation: 539

GCP Http Load Balancer

I have service running in one of my VM port 8088, I want all traffic to be send to this port via my HTTP LOAD BALANCER

Load-Balancer-IP:8088 -> Redirect to my VM port 8088
Load-Balancer-IP-> Redirect to my VM port 8088

How to configure this in gcp load balancer setting currently my configuration look like this enter image description here

Upvotes: 1

Views: 237

Answers (1)

guillaume blaquiere
guillaume blaquiere

Reputation: 75970

To forward a custom port to your backend, you need to use a tcp load balancer in single region only.

enter image description here

enter image description here

Keep in mind that is not a proxy but a port forwarding and SSL certificate aren't managed on the load balancer. If you want to use one, you have to host and manage it on your VM.

Upvotes: 0

Related Questions