Tag: IIS 8

  • 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…

  • 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.