Repository: syncope Updated Branches: refs/heads/master c4587cfdf -> 09b250fa4
[SYNCOPE-700] generalizing protocol,host,port where applicable Project: http://git-wip-us.apache.org/repos/asf/syncope/repo Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/09b250fa Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/09b250fa Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/09b250fa Branch: refs/heads/master Commit: 09b250fa490ecc3be30c30377214175fc05f92ad Parents: c4587cf Author: Francesco Chicchiriccò <[email protected]> Authored: Thu Aug 25 09:58:46 2016 +0200 Committer: Francesco Chicchiriccò <[email protected]> Committed: Thu Aug 25 09:58:46 2016 +0200 ---------------------------------------------------------------------- src/main/asciidoc/getting-started/obtain.adoc | 23 ++++++++++---------- .../reference-guide/concepts/extensions.adoc | 4 ++-- .../adminconsole/adminconsole.adoc | 4 ++-- 3 files changed, 16 insertions(+), 15 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/syncope/blob/09b250fa/src/main/asciidoc/getting-started/obtain.adoc ---------------------------------------------------------------------- diff --git a/src/main/asciidoc/getting-started/obtain.adoc b/src/main/asciidoc/getting-started/obtain.adoc index 905e87e..407f7b4 100644 --- a/src/main/asciidoc/getting-started/obtain.adoc +++ b/src/main/asciidoc/getting-started/obtain.adoc @@ -155,22 +155,22 @@ sudo service tomcat8 start [[deb-components]] ==== Components -CAUTION: The following assumes that Apache Tomcat is reachable on host `host.domain` and port `port`. +CAUTION: The following assumes that `protocol`, `host` and `port` reflect your Apache Tomcat installation. [cols="1,2"] |=== | Complete REST API reference -| http://host.domain:port/syncope/index.html +| protocol://host:port/syncope/index.html | http://swagger.io/[Swagger^] UI -| http://host.domain:port/syncope/swagger/ +| protocol://host:port/syncope/swagger/ | Administration console -| http://host.domain:port/syncope-console/ + +| protocol://host:port/syncope-console/ | End-user UI -| http://localhost:9080/syncope-enduser/ +| protocol://host:port/syncope-enduser/ |=== @@ -290,23 +290,23 @@ image::installer-14.png[installer-14] [[installer-components]] ==== Components -CAUTION: The following assumes that the Java EE container is reachable on host `host.domain` and port `port`. +CAUTION: The following assumes that `protocol`, `host` and `port` reflect your Java EE container installation. [cols="1,2"] |=== | Complete REST API reference -| http://host.domain:port/syncope/index.html +| protocol://host:port/syncope/index.html | http://swagger.io/[Swagger^] UI -| http://host.domain:port/syncope/swagger/ +| protocol://host:port/syncope/swagger/ | Administration console -| http://localhost:9080/syncope-console/ + +| protocol://host:port/syncope-console/ + Credentials: `admin` / `password` | End-user UI -| http://localhost:9080/syncope-enduser/ +| protocol://host:port/syncope-enduser/ |=== @@ -505,10 +505,11 @@ The installation process creates `cli.properties`, which contains all the requir Syncope REST API services. The file content looks like the following: -[source] +.... syncope.rest.services=http://localhost:9080/syncope/rest syncope.admin.user=admin syncope.admin.password=QePSFVTnzwQowM4ohhaUYcE6aW47MVZ/ +.... where: http://git-wip-us.apache.org/repos/asf/syncope/blob/09b250fa/src/main/asciidoc/reference-guide/concepts/extensions.adoc ---------------------------------------------------------------------- diff --git a/src/main/asciidoc/reference-guide/concepts/extensions.adoc b/src/main/asciidoc/reference-guide/concepts/extensions.adoc index 591dbc9..62b545e 100644 --- a/src/main/asciidoc/reference-guide/concepts/extensions.adoc +++ b/src/main/asciidoc/reference-guide/concepts/extensions.adoc @@ -73,10 +73,10 @@ This extension enables http://swagger.io/swagger-ui/[Swagger UI^] as web interfa Once installed, Swagger UI is available at [source] -- -http://host:port/syncope/swagger/ +protocol://host:port/syncope/swagger/ -- -where `host` and `port` reflect your Java EE container installation. +where `protocol`, `host` and `port` reflect your Java EE container installation. [NOTE] .Extension Sources http://git-wip-us.apache.org/repos/asf/syncope/blob/09b250fa/src/main/asciidoc/reference-guide/workingwithapachesyncope/adminconsole/adminconsole.adoc ---------------------------------------------------------------------- diff --git a/src/main/asciidoc/reference-guide/workingwithapachesyncope/adminconsole/adminconsole.adoc b/src/main/asciidoc/reference-guide/workingwithapachesyncope/adminconsole/adminconsole.adoc index 896166a..3be76c6 100644 --- a/src/main/asciidoc/reference-guide/workingwithapachesyncope/adminconsole/adminconsole.adoc +++ b/src/main/asciidoc/reference-guide/workingwithapachesyncope/adminconsole/adminconsole.adoc @@ -20,10 +20,10 @@ Once the Java EE container has initialized, the admin console can be accessed at: [source] -- -http://host:port/syncope-console/ +protocol://host:port/syncope-console/ -- -where `host` and `port` reflect your Java EE container installation. +where `protocol`, `host` and `port` reflect your Java EE container installation. You should be greeted with the following web page.
