Is it possible to add a site (and bindings) to my applicationHost.config
file for IIS Express or IIS ?
here's one I had to manually add (which works perfectly) ...
<site name="Our Awesome website" id="4">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="C:\Projects\XWing\Code\Application\Website" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:1200:localhost" />
<binding protocol="http" bindingInformation="*:80:localhost.www.mywebsite.com.au" />
<binding protocol="https" bindingInformation="*:44302:localhost.www.mywebsite.com.au" />
<binding protocol="http" bindingInformation="*:80:localhost.www.mywebsite2.com" />
<binding protocol="https" bindingInformation="*:44302:localhost.www.mywebsite2.com" />
/>
Is this possible? (i'm assuming the <site>..</site>
does not exist)