This is old but...
Yes you should do differently.
Offloading means either:
1. You put the ssl certificate on the load balancer and continue your route to the servers on http => web apps should be created with http on port 80 (default) or other. less secure since traffic from load balancer to servers is not encrypted.
2. You can put the certificate on the load balancer and configure the certificate profiles or settings on the load balancer to decrypt and recrypt to continue with https to the servers. this way your traffic is encrypted from end to end. this requires an https webapp on port 443 (default) or other.
↧