Reputation: 539
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
Upvotes: 1
Views: 237
Reputation: 75970
To forward a custom port to your backend, you need to use a tcp load balancer in single region only.
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