summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArul.Nambi <arul.nambi@amdocs.com>2018-11-19 12:33:26 -0500
committerArul.Nambi <arul.nambi@amdocs.com>2018-11-19 12:34:46 -0500
commit4bace97cd71f468d475317d53c7f5c33d4d2b863 (patch)
treef530e99211db5ecebae10811e51e43e4170d5ea6
parent6f99c3307fe05014c23720cc191a086137135651 (diff)
Moving gzip properties into fe
Issue-ID: AAI-1881 Change-Id: Icd7f912d7cd8dc965051ed89b77718b84fc4a235 Signed-off-by: Arul.Nambi <arul.nambi@amdocs.com>
-rw-r--r--sparkybe-onap-application/config/application-fe-dev.properties11
-rw-r--r--sparkybe-onap-application/config/application-fe-prod.properties11
-rw-r--r--sparkybe-onap-application/config/application.properties9
3 files changed, 20 insertions, 11 deletions
diff --git a/sparkybe-onap-application/config/application-fe-dev.properties b/sparkybe-onap-application/config/application-fe-dev.properties
index bba6656..8ef1de2 100644
--- a/sparkybe-onap-application/config/application-fe-dev.properties
+++ b/sparkybe-onap-application/config/application-fe-dev.properties
@@ -4,4 +4,13 @@ server.servlet.context-path=/services/aai/webapp/
#
# attempt to externalize ui JS classes + resources
#
-spring.resources.static-locations=file:${APP_HOME}/target/static/ \ No newline at end of file
+spring.resources.static-locations=file:${APP_HOME}/target/static/
+
+# Enable response compression
+server.compression.enabled=true
+
+# The comma-separated list of mime types that should be compressed
+server.compression.mime-types=text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json
+
+# Compress the response only if the response size is at least 1KB
+server.compression.min-response-size=1024 \ No newline at end of file
diff --git a/sparkybe-onap-application/config/application-fe-prod.properties b/sparkybe-onap-application/config/application-fe-prod.properties
index b332358..0a68468 100644
--- a/sparkybe-onap-application/config/application-fe-prod.properties
+++ b/sparkybe-onap-application/config/application-fe-prod.properties
@@ -4,4 +4,13 @@ server.servlet.context-path=/services/aai/webapp/
#
# attempt to externalize ui JS classes + resources
#
-spring.resources.static-locations=file:${APP_HOME}/static/ \ No newline at end of file
+spring.resources.static-locations=file:${APP_HOME}/static/
+
+# Enable response compression
+server.compression.enabled=true
+
+# The comma-separated list of mime types that should be compressed
+server.compression.mime-types=text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json
+
+# Compress the response only if the response size is at least 1KB
+server.compression.min-response-size=1024 \ No newline at end of file
diff --git a/sparkybe-onap-application/config/application.properties b/sparkybe-onap-application/config/application.properties
index 0fa18fd..02402b1 100644
--- a/sparkybe-onap-application/config/application.properties
+++ b/sparkybe-onap-application/config/application.properties
@@ -23,13 +23,4 @@ searchservice.client-cert=client-cert-onap.p12
searchservice.client-cert-password=1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
searchservice.truststore=tomcat_keystore
-# Enable response compression
-server.compression.enabled=true
-
-# The comma-separated list of mime types that should be compressed
-server.compression.mime-types=text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json
-
-# Compress the response only if the response size is at least 1KB
-server.compression.min-response-size=1024
-
spring.mvc.favicon.enabled=false \ No newline at end of file