Files
perfdb/pdb-ui/src/main/resources/application.properties
Andreas Huber 85ed5f1ccb file drop support
- Add a folder where you can drop Zip files which will then be
  extracted on the fly and ingsted.
- CsvReaderSettings now contain TagMatcher that are applied to the
  first line and can be used to extract additional tags.
- Update to jdk 16 so that we can have records.
2021-08-01 09:31:40 +02:00

38 lines
1.1 KiB
Properties

base.dir=${java.io.tmpdir}/pdb
db.base=${base.dir}/db
path.tmp=${base.dir}/tmp
path.output=${base.dir}/out
path.fileDrop=${base.dir}/drop
path.fileDropConfig=${base.dir}/drop.json
logging.config=classpath:log4j2.xml
server.port=17333
spring.servlet.multipart.enabled=true
spring.servlet.multipart.max-file-size=3000MB
spring.servlet.multipart.max-request-size=3000MB
spring.servlet.multipart.file-size-threshold=2MB
#spring.servlet.multipart.location=/tmp
#spring.resources.cache.cachecontrol.cache-private=true
#spring.resources.cache.cachecontrol.must-revalidate=true
#spring.resources.cache.cachecontrol.max-age=31536000
#spring.resources.static-locations=classpath:/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
# Enable HTTP/2 support, if the current environment supports it
#server.http2.enabled=true