Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge pull request #604 from jpkrohling/HAWKULAR-733-RemoveHostSynonyms
Browse files Browse the repository at this point in the history
HAWKULAR-733 - Fixed auth server URL.
  • Loading branch information
pilhuhn committed Oct 27, 2015
2 parents 627d90a + fd2f6c9 commit 4bc85ba
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion console/src/main/webapp/keycloak.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"realm": "hawkular",
"auth-server-url": "/auth",
"auth-server-url": "http://localhost:8080/auth",
"ssl-required": "none",
"resource": "hawkular-ui",
"public-client": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@
"enabled": true,
"bearerOnly" : false,
"publicClient": false,
"redirectUris": ["/*", "http://localhost:2772/*"],
"webOrigins": ["http://localhost:2772", "http://localhost:8080", "http://127.0.0.1:8080", "http://localhost:9876", "http://127.0.0.1:9876"],
"redirectUris": ["/*", "http://localhost:8080/*", "http://127.0.0.1:8080/*"],
"webOrigins": ["http://localhost:2772", "http://localhost:8080", "http://127.0.0.1:8080"],
"secret" : "${uuid.hawkular.accounts.backend}"
},
{
Expand All @@ -98,8 +98,8 @@
"publicClient": true,
"secret": "${uuid.hawkular.ui}",
"fullScopeAllowed" : false,
"redirectUris": ["/*"],
"webOrigins": ["http://localhost:8080", "http://127.0.0.1:8080"],
"redirectUris": ["/*", "http://localhost:8080/*", "http://127.0.0.1:8080/*"],
"webOrigins": ["http://localhost:2772", "http://localhost:8080", "http://127.0.0.1:8080"],
"claims": {
"username": true,
"name": true,
Expand Down
8 changes: 4 additions & 4 deletions dist/src/main/resources/configuration/hawkular-realm.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
"enabled": true,
"bearerOnly" : false,
"publicClient": false,
"redirectUris": ["/*", "http://localhost:2772/*"],
"webOrigins": ["http://localhost:2772"],
"redirectUris": ["/*", "http://localhost:8080/*", "http://127.0.0.1:8080/*"],
"webOrigins": ["http://localhost:2772", "http://localhost:8080", "http://127.0.0.1:8080"],
"secret" : "${uuid.hawkular.accounts.backend}"
},
{
Expand All @@ -76,8 +76,8 @@
"publicClient": true,
"secret": "${uuid.hawkular.ui}",
"fullScopeAllowed" : false,
"redirectUris": ["/*"],
"webOrigins": [],
"redirectUris": ["/*", "http://localhost:8080/*", "http://127.0.0.1:8080/*"],
"webOrigins": ["http://localhost:2772", "http://localhost:8080", "http://127.0.0.1:8080"],
"claims": {
"username": true,
"name": true,
Expand Down
2 changes: 1 addition & 1 deletion dist/src/main/resources/wildfly/patches/standalone.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,7 @@
</subsystem>
<subsystem xmlns="urn:jboss:domain:keycloak:1.1">
<realm name="hawkular">
<auth-server-url>/auth</auth-server-url>
<auth-server-url>http://localhost:8080/auth</auth-server-url>
<ssl-required>none</ssl-required>
</realm>
<secure-deployment name="hawkular-accounts.war">
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,12 @@
<version.com.google.guava>16.0.1</version.com.google.guava>
<version.commons.io>2.4</version.commons.io>
<version.gnu.getopt>1.0.13</version.gnu.getopt>
<version.org.hawkular.accounts>1.0.16.Final</version.org.hawkular.accounts>
<version.org.hawkular.agent>0.11.1.Final</version.org.hawkular.agent>
<version.org.hawkular.accounts>1.0.17.Final-SRC-revision-11f18166ce41b211fd54314a8720e27cda80185f</version.org.hawkular.accounts>
<version.org.hawkular.agent>0.11.2.Final-SRC-revision-59b912b9ba203d510b35177bde1bde9fc7975a1d</version.org.hawkular.agent>
<version.org.hawkular.alerts>0.5.0.Final</version.org.hawkular.alerts>
<version.org.hawkular.bus>0.7.1.Final</version.org.hawkular.bus>
<version.org.hawkular.commons>0.2.2.Final</version.org.hawkular.commons>
<version.org.hawkular.cmdgw>0.10.1.Final</version.org.hawkular.cmdgw>
<version.org.hawkular.cmdgw>0.10.2.Final-SRC-revision-06aa579bd1b9658cf82af6cfedef6365ecf03e8c</version.org.hawkular.cmdgw>
<version.org.hawkular.metrics>0.9.0.Final-SRC-revision-9080fcfbe40a66ce8143c477b5d6f8fbadeecf3a</version.org.hawkular.metrics>
<version.org.hawkular.inventory>0.7.0.Final</version.org.hawkular.inventory>
<version.org.hawkular.nest>${version.org.hawkular.bus}</version.org.hawkular.nest>
Expand Down

0 comments on commit 4bc85ba

Please sign in to comment.