35 lines
1.6 KiB
Properties
35 lines
1.6 KiB
Properties
smallrye.jwt.sign.key.location=privateKey.pem
|
|
|
|
mp.jwt.verify.publickey.location=${CERTIFICATE:publicKey.pem}
|
|
mp.jwt.verify.issuer=https://example.com/issuer
|
|
mp.jwt.token.header=Cookie
|
|
mp.jwt.token.cookie=jwt
|
|
|
|
quarkus.datasource.db-kind = postgresql
|
|
quarkus.datasource.username = ${POSTGRES_USER:default}
|
|
quarkus.datasource.password = ${POSTGRES_PASSWORD:default}
|
|
quarkus.datasource.jdbc.url = jdbc:postgresql://${POSTGRES_URL:localhost}:${POSTGRES_PORT:5432}/${POSTGRES_DB:default}
|
|
# drop and create the database at startup (use `update` to only update the schema)
|
|
quarkus.hibernate-orm.database.generation = drop-and-create
|
|
#quarkus.hibernate-orm.database.generation = update
|
|
covas.schema.create = true
|
|
|
|
quarkus.mailer.auth-methods=DIGEST-MD5 CRAM-SHA256 CRAM-SHA1 CRAM-MD5 PLAIN LOGIN
|
|
quarkus.mailer.from=${MAILER_FROM:default@mail.com}
|
|
quarkus.mailer.host=${MAILER_HOST:smtp.default.com}
|
|
quarkus.mailer.port=${MAILER_PORT:587}
|
|
quarkus.mailer.start-tls=REQUIRED
|
|
quarkus.mailer.username=${MAILER_USERNAME:default@mail.com}
|
|
quarkus.mailer.password=${MAILER_PASSWORD:default}
|
|
quarkus.mailer.mock=false
|
|
|
|
quarkus.redis.hosts=redis://${REDIS_URL:localhost}:${REDIS_PORT:6379}
|
|
|
|
quarkus.http.cors=true
|
|
quarkus.http.origins=http://localhost:8084
|
|
quarkus.http.cors.methods=GET,PUT,POST,DELETE,PATCH
|
|
quarkus.http.cors.headers=accept,authorization,content-type,x-requested-with,x-foobar
|
|
quarkus.http.cors.access-control-allow-credentials=true
|
|
|
|
#quarkus.native.additional-build-args=-H:IncludeResources=.*\\.pem,.\\*.txt
|
|
quarkus.native.additional-build-args=-H:ResourceConfigurationFiles=${RESOURCES:resource-config.json} |