When a user enters the URL for the Enforce UI as a non-secure HTTP request (i.e. http://localhost), an error page is displayed.
Unable to connect / This page can't be displayed.
The Enforce Console's tomcat webserver is configured to only accept HTTPS requests. Any non-secure HTTP request will not be redirected. By default the tomcat webserver is not configured to redirect HTTP requests to HTTPS.
<!-- Define a non-SSL HTTP/1.1 Connector on port 80 -->
<Connector URIEncoding="UTF-8" port="80" acceptCount="100" enableLookups="false" maxThreads="150" redirectPort="443" />
<!-- Force HTTPS, required for HTTP redirect! -->
<security-constraint>
<web-resource-collection>
<web-resource-name>Protected Context</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<!-- auth-constraint goes here if you require authentication -->
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
If you receive the "unsupported browser" message after restarting the service and logging into Enforce, please be sure to edit SymantecDLP\Protect\config\Manager.properties. Change the line to reflect as shown below and restart Vontu Manager again:
# Used for toggling the ability to enter Unsupported Browsers (i.e Chrome / Safari)
com.vontu.manager.unsupported_browser_authentication = true