Skip to main content
Skip table of contents

Deploy CAE using Microsoft IIS on Windows

Copy CAE files

Copy the files under webapp to a folder C:\inetpub\CAE on a machine running Microsoft IIS

Add a new web site from IIS Manager

Bind it to HTTPS and remove the HTTP binding for productive usage (using your own certificate).


Example web.config

XML
<?xml version="1.0"?>
<configuration>
    <system.webServer>
      <httpProtocol>
        <customHeaders>
          <add name="Access-Control-Allow-Origin" value="*" />
        </customHeaders>
      </httpProtocol>
      
      <security>
        <requestFiltering>
          <requestLimits maxAllowedContentLength="1073741824" />
        </requestFiltering>
      </security>
	
	  <staticContent>
		  <clientCache cacheControlMode="DisableCache"/>
		  <remove fileExtension=".woff"/>
		  <mimeMap fileExtension=".woff" mimeType="application/font-woff"/>
		  <remove fileExtension=".woff2"/>
		  <mimeMap fileExtension=".woff2" mimeType="application/font-woff"/>
		  <remove fileExtension=".webmanifest"/>
		  <mimeMap fileExtension=".webmanifest" mimeType="application/json"/>
	  </staticContent>
	</system.webServer>	
</configuration>


Adapt Settings

See Adapt Settings


JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.