34 lines
1.1 KiB
Properties
34 lines
1.1 KiB
Properties
smallrye.jwt.sign.key.location=privateKey.pem
|
|
|
|
|
|
mp.jwt.verify.publickey.location=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 = toto
|
|
quarkus.datasource.password = toto
|
|
quarkus.datasource.jdbc.url = jdbc:postgresql://db:5432/toto
|
|
# drop and create the database at startup (use `update` to only update the schema)
|
|
quarkus.hibernate-orm.database.generation = drop-and-create
|
|
|
|
covas.schema.create = true
|
|
|
|
quarkus.mailer.auth-methods=DIGEST-MD5 CRAM-SHA256 CRAM-SHA1 CRAM-MD5 PLAIN LOGIN
|
|
quarkus.mailer.from=valczebackup@gmail.com
|
|
quarkus.mailer.host=smtp.gmail.com
|
|
quarkus.mailer.port=587
|
|
quarkus.mailer.start-tls=REQUIRED
|
|
quarkus.mailer.username=valczebackup@gmail.com
|
|
quarkus.mailer.password=aohrpmqvxldwyebs
|
|
quarkus.mailer.mock=false
|
|
|
|
|
|
quarkus.redis.hosts=redis://redis:6379
|
|
|
|
quarkus.http.cors=true
|
|
quarkus.http.origins=http://localhost:8084
|
|
quarkus.http.cors.methods=GET,PUT,POST
|
|
quarkus.http.cors.headers=accept,authorization,content-type,x-requested-with,x-foobar
|
|
quarkus.http.cors.access-control-allow-credentials=true |