1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-06-03 06:10:11 +02:00
Stirling-PDF/src/main/resources/application.properties

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.4 KiB
Properties
Raw Normal View History

2023-01-27 19:23:40 +01:00
multipart.enabled=true
server.forward-headers-strategy=NATIVE
server.error.path=/error
server.error.whitelabel.enabled=false
server.error.include-stacktrace=always
server.error.include-exception=true
server.error.include-message=always
2023-07-30 12:31:46 +02:00
2023-08-17 01:10:14 +02:00
#logging.level.org.springframework.web=DEBUG
#logging.level.org.springframework=DEBUG
#logging.level.org.springframework.security=DEBUG
2023-07-30 12:31:46 +02:00
2023-08-31 14:52:54 +02:00
spring.servlet.multipart.max-file-size=2000MB
spring.servlet.multipart.max-request-size=2000MB
2023-07-30 12:31:46 +02:00
server.servlet.session.tracking-modes=cookie
2023-08-27 01:38:17 +02:00
server.servlet.context-path=${SYSTEM_ROOTURIPATH:/}
spring.devtools.restart.enabled=true
spring.devtools.livereload.enabled=true
2024-02-11 17:47:00 +01:00
spring.thymeleaf.encoding=UTF-8
2023-05-19 00:17:46 +02:00
2023-08-27 01:38:17 +02:00
server.connection-timeout=${SYSTEM_CONNECTIONTIMEOUTMINUTES:5m}
spring.mvc.async.request-timeout=${SYSTEM_CONNECTIONTIMEOUTMILLISECONDS:300000}
2023-07-04 22:45:35 +02:00
spring.resources.static-locations=file:customFiles/static/
#spring.thymeleaf.prefix=file:/customFiles/templates/,classpath:/templates/
2023-08-12 03:29:10 +02:00
#spring.thymeleaf.cache=false
2023-08-17 23:17:42 +02:00
spring.datasource.url=jdbc:h2:file:./configs/stirling-pdf-DB;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
2023-08-12 03:29:10 +02:00
spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=
2023-12-10 15:09:28 +01:00
spring.h2.console.enabled=false
2023-08-12 03:29:10 +02:00
spring.jpa.hibernate.ddl-auto=update
2023-09-14 14:32:49 +02:00
# Change the default URL path for OpenAPI JSON
springdoc.api-docs.path=/v1/api-docs
# Set the URL of the OpenAPI JSON for the Swagger UI
springdoc.swagger-ui.url=/v1/api-docs