1

I have a setup of Azure VM scaleset, each Linux VM running java spring boot app on a specific port (8070). I need to use a domain with https on application gateway and use Linux VMSS with java app as backend pools.

I am aware this can be done with azure lb but I need to use SSL. If this is possible with a gateway, what would be configurations for 'listeners', 'rules' and 'HTTP settings'

I saw a question which is relevant to mine, but I need much more help.

azure_app_gateway

Dave M
  • 4,494
anudeep
  • 111

1 Answers1

1

this is not possible with lb unless your app listens on https (so it needs a certificate). its possible to do SSL offloading on the app go or do end-to-end SSL. this is the official article to configure SSL offloading, this one is for e2e SSL.

basically, you need to create SSL and create a listener that's using that SSL certificate. probe behaviour doesn't change (compared to lb probe) unless you are doing e2e SSL.