End to End SSL with Application Gateway and Azure Web Apps (10/2017)
Fourth Update 7/2018: You no longer need to use Application Gateway to front your application to be PCI 3.0 compliant. You can enable the respective TLS version you would like your app to respond to directly in the Azure Portal for your web application. Third Update: After some discussions it is probably not recommended to…
Troubleshooting Msdeploy issues using Fiddler
This past week I was troubleshooting an issue with Msdeploy and needed Fiddler to proxy MsDeploy. I eventually figured out how to get this working. In the msdeploy.exe.config ( “C:\Program Files\IIS\Microsoft Web Deploy V3”) add the piece that is in bold below. <configuration> <startup useLegacyV2RuntimeActivationPolicy=”true” > <supportedRuntime version=”v4.0″ sku=”.NETFramework,Version=v4.0″ /> <supportedRuntime version=”v2.0.50727″ /> </startup> <system.net>…