Integrity Modeler Installation > Installing Optional Modeler Components > Web Interface Installation > Configuring the Web Interface Website to Use HTTP
  
Configuring the Web Interface Website to Use HTTP
Enabling HTTP
By default, the Web Interface website, Modeler REST Service, and OSLC Provider are configured to use HTTPS on port 57850. This setting is configured in the web.config file, which resides in the following location:
C:\inetpub\wwwroot\PTC Integrity Modeler Web Interface
To enable HTTP, do the following:
1. Open the web.config file, then edit the following entries:
a. Disable forced SSL by setting the requireSSL="true" attribute for Form Authentication to false:

<!--Enforce Forms Authentication for the whole Web Site-->
<authentication mode="Forms">
<forms name=".StudioRESTService" loginUrl="~/account/login"
timeout="240" defaultUrl="~/" protection="All" requireSSL="false" />
</authentication>
b. Remove or comment out the <bindings> section:

<bindings>
<webHttpBinding>
<binding>
<security mode="Transport" />
</binding>
</webHttpBinding>
</bindings>
2. Add the HTTP binding using Internet Information Services (IIS) Manager:
a. On the server hosting the Integrity Modeler Web Interface, open IIS Manager.
b. In the left pane, select the PTC Integrity Modeler Web Interface site.
c. In the Actions pane, click Bindings...
d. Click Add... in the Site Bindings dialog box.
e. In the Add Site Binding dialog box, add the binding information as follows:
Typehttp
Port57851
f. Click OK to confirm.
If you do not want to use HTTPS, you can remove the https binding using IIS Manager after setting up HTTP:
Select the https binding, then click Remove.
Testing the Web Sites
You now have 2 versions of the Website enabled, one using SSL (https) and one unsecure (http). You can use both sites so test that you can access them both.
1. Using a different computer to the one hosting the Modeler Web Interface, open a web browser and check that you can access the secure website using the https connection. Add the port number 57850 at the end of the URL (e.g. https://<myserver>:57850).
a. If you see a security warning, allow the certificate.
b. Click on Continue to this website. You will be able to login as normal, but you will see the address bar is shown in red that the site is potentially insecure.
2. Using a different computer to the one hosting the Modeler Web Interface, open a web browser and check that you can access the web site using port 57851 (e.g. http://<myserver>:57851) by logging in.