Understanding and Configuring Application Gateway
Azure Training Series Azure Training Series
7.7K subscribers
61,944 views
567

 Published On Apr 4, 2019

Application Gateway in Azure offers layer 7 load balancer capabilities that manage traffic to your web applications over HTTP or HTTPS. With Application Gateway, you can be even more specific about the route to be followed and the destination to be reached, which means that you can route traffic based on the incoming URL

Application Gateway not only has the load balancing abilities but also secures your application using Web Application Firewall.

==========================================
Certificate Creation Script:
\\\\Please modify the script as required\\\\
==========================================

$certificate = New-SelfSignedCertificate -certstorelocation cert:\localmachine\my -dnsname "*.aquilaconserv.com","*.scm.aquilaconserv.com"

$certThumbprint = "cert:\localMachine\my\" + $certificate.Thumbprint
$password = ConvertTo-SecureString -String "work4atcsl" -Force -AsPlainText

$fileName = "aquilaconserv.pfx"

Export-PfxCertificate -cert $certThumbprint -FilePath $fileName -Password $password

===========================================

show more

Share/Embed