blob: 0a68468435a325cbf75ae1aabe17fb2b35803331 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
server.servlet.context-path=/services/aai/webapp/
#
# attempt to externalize ui JS classes + resources
#
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
|