diff options
Diffstat (limited to 'utils/webseal-simulator/src/main/webapp/WEB-INF/web.xml')
-rw-r--r-- | utils/webseal-simulator/src/main/webapp/WEB-INF/web.xml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/utils/webseal-simulator/src/main/webapp/WEB-INF/web.xml b/utils/webseal-simulator/src/main/webapp/WEB-INF/web.xml index a293d3c883..c23e265aae 100644 --- a/utils/webseal-simulator/src/main/webapp/WEB-INF/web.xml +++ b/utils/webseal-simulator/src/main/webapp/WEB-INF/web.xml @@ -38,9 +38,18 @@ <url-pattern>/create</url-pattern> </servlet-mapping> + <filter> + <filter-name>contentSecurityPolicyHeaderFilter</filter-name> + <filter-class>org.openecomp.sdc.webseal.simulator.ContentSecurityPolicyHeaderFilter</filter-class> + <async-supported>true</async-supported> + </filter> + <filter-mapping> + <filter-name>contentSecurityPolicyHeaderFilter</filter-name> + <url-pattern>/*</url-pattern> + </filter-mapping> + <welcome-file-list> <welcome-file>login</welcome-file> </welcome-file-list> </web-app> - |