diff options
author | Thomas <> | 2022-06-03 11:40:52 +0200 |
---|---|---|
committer | Thomas <> | 2022-06-03 11:40:52 +0200 |
commit | 38d7758281b9cb8ba0f1a7e8a8d10098bcf2dcb8 (patch) | |
tree | 9a556f0a592577173a7b22324707376ce11d097d /ms_specific_proxyservice/src/main/webapp/WEB-INF | |
parent | e8e75813ab549d03b0ac482fe0e1e86ee660b8b0 (diff) | |
download | National_eIDAS_Gateway-38d7758281b9cb8ba0f1a7e8a8d10098bcf2dcb8.tar.gz National_eIDAS_Gateway-38d7758281b9cb8ba0f1a7e8a8d10098bcf2dcb8.tar.bz2 National_eIDAS_Gateway-38d7758281b9cb8ba0f1a7e8a8d10098bcf2dcb8.zip |
refactor(eidas): split 'authmodule-eIDAS-v2' into 'common-eidas'
code and connector-specific elements
Diffstat (limited to 'ms_specific_proxyservice/src/main/webapp/WEB-INF')
-rw-r--r-- | ms_specific_proxyservice/src/main/webapp/WEB-INF/web.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ms_specific_proxyservice/src/main/webapp/WEB-INF/web.xml b/ms_specific_proxyservice/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 00000000..dfac815e --- /dev/null +++ b/ms_specific_proxyservice/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_0.xsd" + version="3.0"> + + <display-name>AT eIDAS Proxy-Service</display-name> + <description>MS specific eIDAS Proxy-Service to national eID infrastructure</description> + + <welcome-file-list> + <welcome-file>index.html</welcome-file> + </welcome-file-list> + + <session-config> + <session-timeout>5</session-timeout> + </session-config> + + <error-page> + <error-code>500</error-code> + <location>/errorpage.jsp</location> + </error-page> + +</web-app> |