-
-
Save charyorde/1ed81b5acd99ed85cfd60f4547ce4571 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UAA_CONFIG_URL=file:///uaa.yml ./gradlew -Dspring.profiles.active=default,mysql run --info |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
issuer: | |
uri: http://localhost:8080/uaa | |
oauth: | |
user: | |
authorities: | |
- openid | |
- scim.me | |
- cloud_controller.read | |
- cloud_controller.write | |
- cloud_controller_service_permissions.read | |
- password.write | |
- scim.userids | |
- uaa.user | |
- approvals.me | |
- oauth.approvals | |
- profile | |
- roles | |
- user_attributes | |
- uaa.offline_token | |
autoapprove: | |
- aimsui | |
clients: | |
aimsui: | |
override: true | |
id: aimsui | |
secret: aimsuisecret | |
scope: clients_read, clients_write, openid, scim.read, scim.write, scim.userids, openid, cloud_controller.read,cloud_controller.write | |
authorities: uaa.resource, clients.secret, scim.read, clients.write, scim.write, openid, cloud_controller.read, cloud_controller.write | |
authorized-grant-types: client_credentials, refresh_token | |
access_token_validity: 43200 | |
spring_profiles: mysql | |
database: | |
driverClassName: org.mariadb.Driver | |
url: mysql://root:root@localhost:5432/uaa | |
username: root | |
password: root |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment