Tag: IIS 7.5

  • Switching SSLs when on Multiple HTTPS Bindings

    I had to switch out a certificate on a server and got the below error messages, documented here to make this familiar int he future. I was worried that it would break the other sites on the server, 2 others using the old certificate. Instead the server updated the certificate on all 3 and all…

  • ApplicationPoolIdentity user in Users & IIS_IUSRS

    “ApplicationPoolIdentity is assigned membership of the Users group as well as the IIS_IUSRS group.” Source: http://stackoverflow.com/questions/5437723/iis-apppoolidentity-and-file-system-write-access-permissions I often need to add Users in particular to give the permissions needed.

  • Command Line Add woff Mime Type

    Easily add in the woff mime-type with the below command: %systemroot%\system32\inetsrv\appcmd set config /section:staticContent /+”[fileExtension=’.woff’,mimeType=’application/font-woff’]” To note, the above placed the configuration within the applicationHost.config and not in a web.config. As desired in my scenario as I had wanted the configuration to be server wide.