20 lines
714 B
Properties
20 lines
714 B
Properties
# Configuration UnionFlow Server - Profil Production
|
|
# Ce fichier est chargé automatiquement quand le profil 'prod' est actif
|
|
|
|
# Configuration Hibernate pour production
|
|
quarkus.hibernate-orm.database.generation=validate
|
|
quarkus.hibernate-orm.log.sql=false
|
|
|
|
# Configuration logging pour production
|
|
quarkus.log.console.level=WARN
|
|
quarkus.log.category."dev.lions.unionflow".level=INFO
|
|
quarkus.log.category.root.level=WARN
|
|
|
|
# Configuration Keycloak pour production
|
|
quarkus.oidc.auth-server-url=${KEYCLOAK_SERVER_URL:http://localhost:8180/realms/unionflow}
|
|
quarkus.oidc.client-id=${KEYCLOAK_CLIENT_ID:unionflow-server}
|
|
quarkus.oidc.credentials.secret=${KEYCLOAK_CLIENT_SECRET}
|
|
quarkus.oidc.tls.verification=required
|
|
|
|
|