Skip to main content
Mitratech Success Center

Client Support Center

Need help? Click a product group below to select your application and get access to knowledge articles, webinars, training content, and release notes or to contact our support team.

Authorized users - log in to create a ticket, view tickets status and check your success plan details.

 

TeamConnect Login page is not visible while using Web URL(httpd) in Tomcat

Issue : Client will not able to navigate between tabs when they are using their web URL.(configured webserver on top of app server). If they use direct Tomcat URL, they will be able to navigate.

Below would be the complete configuration details on the httpd instance in httpd.conf file.( Content-Security-Policy is the problem here)

<IfModule mod_headers.c>
Header set X-XSS-Protection "1; mode=block"
Header always append X-Frame-Options SAMEORIGIN
Header set X-Content-Type-Options nosniff

Header set Content-Security-Policy "default-src 'self';"
Header unset ETag
FileETag None
</IfModule>

 

Solution : 

If they have this property in web server configuration file (In httpd.conf file)
Header set Content-Security-Policy "xxxx;", It has to be corrected to below for TeamConnect to work fine.

Header set Content-Security-Policy "default-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; connect-src 'self'; img-src 'self'; style-src 'self' 'unsafe-inline';base-uri 'self';form-action 'self'; font-src 'self'; frame-src 'self';”worker-src 'blob’

  • Was this article helpful?