diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-10-26 10:10:37 +0100 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-10-26 10:10:37 +0100 |
| commit | 575876a19885949f62a2b10e7885b00e9816919c (patch) | |
| tree | 3a8f60a1c02b62d6a74cc7aaf0b1b983a8ffec79 /WebContent/WEB-INF | |
| parent | fd2ebccde4b2403df70a7a1f476d0713280300eb (diff) | |
| download | FIT-575876a19885949f62a2b10e7885b00e9816919c.tar.gz FIT-575876a19885949f62a2b10e7885b00e9816919c.zip | |
Move the user credentials to web.xml
Diffstat (limited to 'WebContent/WEB-INF')
| -rw-r--r-- | WebContent/WEB-INF/web.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/WebContent/WEB-INF/web.xml b/WebContent/WEB-INF/web.xml new file mode 100644 index 0000000..1fd1e4e --- /dev/null +++ b/WebContent/WEB-INF/web.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1"> + <display-name>FIT</display-name> + <welcome-file-list> + <welcome-file>index.html</welcome-file> + <welcome-file>index.htm</welcome-file> + <welcome-file>index.jsp</welcome-file> + <welcome-file>default.html</welcome-file> + <welcome-file>default.htm</welcome-file> + <welcome-file>default.jsp</welcome-file> + </welcome-file-list> + <context-param> + <param-name>username</param-name> + <param-value>admin</param-value> + </context-param> + <context-param> + <param-name>password</param-name> + <param-value>12345</param-value> + </context-param> + <context-param> + <param-name>salt</param-name> + <param-value>aabbcc112233</param-value> + </context-param> +</web-app>
\ No newline at end of file |
