mirror of https://github.com/usbharu/Hideout.git
43 lines
854 B
YAML
43 lines
854 B
YAML
hideout:
|
|
url: "http://localhost:8081"
|
|
private: true
|
|
debug:
|
|
trace-query-exception: true
|
|
trace-query-call: true
|
|
spring:
|
|
devtools:
|
|
livereload:
|
|
enabled: true
|
|
restart:
|
|
enabled: true
|
|
data:
|
|
mongodb:
|
|
auto-index-creation: true
|
|
host: localhost
|
|
port: 27017
|
|
database: hideout
|
|
datasource:
|
|
driver-class-name: org.postgresql.Driver
|
|
url: "jdbc:postgresql:hideout"
|
|
username: "postgres"
|
|
password: "password"
|
|
servlet:
|
|
multipart:
|
|
max-file-size: 40MB
|
|
max-request-size: 40MB
|
|
threads:
|
|
virtual:
|
|
enabled: true
|
|
messages:
|
|
basename: messages/hideout-web-messages
|
|
cache-duration: -1
|
|
thymeleaf:
|
|
cache: false
|
|
server:
|
|
tomcat:
|
|
basedir: tomcat
|
|
accesslog:
|
|
enabled: true
|
|
max-http-form-post-size: 40MB
|
|
max-swallow-size: 40MB
|
|
port: 8081 |