summaryrefslogtreecommitdiffstats
path: root/sidecar/rproxy/src/main/resources/application.properties
diff options
context:
space:
mode:
authorJonathan Gathman <jonathan.gathman@att.com>2018-09-25 16:57:31 +0000
committerGerrit Code Review <gerrit@onap.org>2018-09-25 16:57:31 +0000
commit408697418b8787dd354482bbeab3ff87de68bfff (patch)
tree61e97ebd85d64319b40f496dd8676f9be7114e9d /sidecar/rproxy/src/main/resources/application.properties
parent376b25bccbbb558791a45f9da9eeaabb48baa7bb (diff)
parent0d7feec2e32f69a8e919f06f03df3ce46e78801d (diff)
Merge "Initial drop of rProxy code"
Diffstat (limited to 'sidecar/rproxy/src/main/resources/application.properties')
-rw-r--r--sidecar/rproxy/src/main/resources/application.properties22
1 files changed, 22 insertions, 0 deletions
diff --git a/sidecar/rproxy/src/main/resources/application.properties b/sidecar/rproxy/src/main/resources/application.properties
new file mode 100644
index 0000000..f291372
--- /dev/null
+++ b/sidecar/rproxy/src/main/resources/application.properties
@@ -0,0 +1,22 @@
+CONFIG_HOME=./config
+
+server.port=10692
+
+server.ssl.enabled=true
+server.ssl.protocol=TLS
+server.ssl.enabled-protocols=TLSv1.2
+server.ssl.key-store=${CONFIG_HOME}/auth/tomcat_keystore
+server.ssl.client-auth=need
+
+server.ssl.client-cert=${CONFIG_HOME}/auth/client-cert.p12
+
+server.servlet.contextPath=/
+
+uri.authorization.configuration-file=${CONFIG_HOME}/auth/uri-authorization.json
+
+logging.config=${CONFIG_HOME}/logback-spring.xml
+
+spring.profiles.default=secure,cadi
+
+# For Spring Boot Actuator endpoints
+management.endpoints.web.base-path=/rproxy \ No newline at end of file