I would like to create a white list for IPs connecting to my App Service. Is there any way to do this on the Shared pricing tier?
Azure gives more features for higher pricing tiers. In the past I found a way to get some features for free. I was able to use a free SSL certificate so I can map to my custom domain name and transmit data over a secured connection on the Shared tier.
I have written code to white list IP addresses but I'd rather handle it with configuration rather than on the application level. I would prefer not use the Shared or Basic tiers (and toggle the vm on and off). Are there any solutions available?
<ipSecurity>
should work in web.config even in Shared - stackoverflow.com/a/38808091/4148708 – evilSnobu