0

In my quarkus application.properties i want to start the keycloak dev services on a pre determend Port

quarkus.keycloak.devservices.port=8180
quarkus.keycloak.admin-client.server-url=http://localhost:8180

this works perfectly fine but when i want to add the oidc.auth-server-url like this

quarkus.keycloak.devservices.port=8180
quarkus.keycloak.admin-client.server-url=http://localhost:8180
quarkus.keycloak.devservices.realm-path=quarkus-realm.json
quarkus.oidc.auth-server-url=http://localhost:8180/realms/quarkus
quarkus.oidc.client-id=frontend
quarkus.oidc.credentials.secret=secret
quarkus.oidc.application-type=web-app

it wont start at all Note: it starts no problems with the other options besides oidc.auth-server-url and it wont even if there is just the dev port decleration and the oidc.auth-server-url.

Any Ideas?? it wont start at all Note: it starts no problems with the other options besides oidc.auth-server-url and it wont even if there is just the dev port decleration and the oidc.auth-server-url.

Any Ideas??

Waldo
  • 1
  • As soon as you set `quarkus.oidc.auth-server-url` quarkus assumes you have an own instance running and won't start up a dev service anymore. If you want to use the devservice, simply remove the`quarkus.oidc.auth-server-url` property. – Herr Derb Jul 21 '23 at 08:44
  • Right, adding `%prod.` prefix to it won't affect the devmode experience – Sergey Beryozkin Jul 21 '23 at 08:59

0 Answers0