-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.properties
31 lines (27 loc) · 1.04 KB
/
application.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Configuration file
# key = value
quarkus.application.name=quarkus-echo
# Log
quarkus.log.level=INFO
quarkus.log.category."quarkus.mongodb".level=DEBUG
quarkus.log.category."io.smallrye.jwt".level=DEBUG
# JWT
mp.jwt.verify.publickey.location=/META-INF/resources/publicKey.pem
quarkus.smallrye-jwt.enabled=true
#smallrye.jwt.verify.algorithm=ES256
mp.jwt.verify.requireiss=false
smallrye.jwt.path.groups=authorities
# Mongodb
quarkus.mongodb.connection-string=mongodb://localhost:27017
quarkus.mongodb.database=docker
# Test
%test.quarkus.security.users.embedded.enabled=true
%test.quarkus.security.users.embedded.plain-text=true
%test.quarkus.security.users.embedded.users.admin=admin
%test.quarkus.security.users.embedded.roles.admin=ROLE_ADMIN
%test.quarkus.security.users.embedded.users.test=test
%test.quarkus.security.users.embedded.roles.test=ROLE_COMPANY_READ
%test.quarkus.smallrye-jwt.enabled=false
%test.quarkus.mongodb.connection-string=mongodb://localhost:${EMBEDDED_MONGO_PORT}
%test.quarkus.mongodb.write-concern.journal=false
quarkus.http.test-port=0