diff options
Diffstat (limited to 'src/main/webapp')
-rw-r--r-- | src/main/webapp/META-INF/MANIFEST.MF | 8 | ||||
-rw-r--r-- | src/main/webapp/WEB-INF/config/dcae-fe/application.properties | 3 | ||||
-rw-r--r-- | src/main/webapp/WEB-INF/jetty-web.xml | 7 | ||||
-rw-r--r-- | src/main/webapp/WEB-INF/rewrite.config | 2 | ||||
-rw-r--r-- | src/main/webapp/WEB-INF/web.xml | 10 |
5 files changed, 30 insertions, 0 deletions
diff --git a/src/main/webapp/META-INF/MANIFEST.MF b/src/main/webapp/META-INF/MANIFEST.MF new file mode 100644 index 0000000..1902117 --- /dev/null +++ b/src/main/webapp/META-INF/MANIFEST.MF @@ -0,0 +1,8 @@ +Manifest-Version: 1.0 +Implementation-Title: dcae-fe +Implementation-Version: APPLICATION_VERSION +Implementation-Vendor-Id: com.att.tlv.sdc.dcae +Build-Jdk: 1.7.0_45 +Created-By: Apache Maven 3.2.1 +Archiver-Version: Plexus Archiver +Specification-Version: 1707.0.0-SNAPSHOT diff --git a/src/main/webapp/WEB-INF/config/dcae-fe/application.properties b/src/main/webapp/WEB-INF/config/dcae-fe/application.properties new file mode 100644 index 0000000..a018abb --- /dev/null +++ b/src/main/webapp/WEB-INF/config/dcae-fe/application.properties @@ -0,0 +1,3 @@ +server.port=8181 +server.context-path=/dcae +beUrl=https://zldcrdm2sdc2abe01.3f1a87.rdm2.tci.att.com:8443 diff --git a/src/main/webapp/WEB-INF/jetty-web.xml b/src/main/webapp/WEB-INF/jetty-web.xml new file mode 100644 index 0000000..67a135a --- /dev/null +++ b/src/main/webapp/WEB-INF/jetty-web.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE Configure PUBLIC + "-//Mort Bay Consulting//DTD Configure//EN" + "http://www.eclipse.org/jetty/configure_9_0.dtd"> +<Configure class="org.eclipse.jetty.webapp.WebAppContext"> + <Set name="contextPath">/dcae</Set> +</Configure> diff --git a/src/main/webapp/WEB-INF/rewrite.config b/src/main/webapp/WEB-INF/rewrite.config new file mode 100644 index 0000000..90893bb --- /dev/null +++ b/src/main/webapp/WEB-INF/rewrite.config @@ -0,0 +1,2 @@ +RewriteRule ^.*\..*$ - [L] +RewriteRule ^.*$ /index.html [L] diff --git a/src/main/webapp/WEB-INF/web.xml b/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..8ba3dc1 --- /dev/null +++ b/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<web-app xmlns="http://java.sun.com/xml/ns/javaee" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" + version="3.0"> + + <display-name>DCAE_FE</display-name> + + +</web-app> |