Fix typo and update http->https, port numbers
This commit is contained in:
@@ -18,7 +18,7 @@ If you need to access oCIS running in a docker container, on a VM or a remote ma
|
|||||||
Upon first start of the oCIS fullstack server with `./bin/ocis server` it will generate a file `identifier-registration.yml` in the config folder in your current working directory. This file is used to configure the built-in identity provider and therefore contains the OpenID Connect issuer and also information about relying parties, for example ownCloud Web and our desktop and mobile applications.
|
Upon first start of the oCIS fullstack server with `./bin/ocis server` it will generate a file `identifier-registration.yml` in the config folder in your current working directory. This file is used to configure the built-in identity provider and therefore contains the OpenID Connect issuer and also information about relying parties, for example ownCloud Web and our desktop and mobile applications.
|
||||||
|
|
||||||
{{< hint warning >}}
|
{{< hint warning >}}
|
||||||
The `identifier-registration.yml` file will only be generated if does not exist. If you want to change certain environment variables like `OCIS_URL`, please delete this file first before doing so. Otherwise your changes will not be applied correctly and you will run into errors.
|
The `identifier-registration.yml` file will only be generated if it does not exist yet. If you want to change certain environment variables like `OCIS_URL`, please delete this file first before doing so. Otherwise your changes will not be applied correctly and you will run into errors.
|
||||||
{{< /hint >}}
|
{{< /hint >}}
|
||||||
|
|
||||||
{{< hint warning >}}
|
{{< hint warning >}}
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ TAGS=simple make generate build
|
|||||||
Open the browser at http://localhost:9100
|
Open the browser at http://localhost:9100
|
||||||
|
|
||||||
1. You land on the login screen. click login
|
1. You land on the login screen. click login
|
||||||
2. You are redirected to an idp at http://localhost:9140/oauth2/auth with a login mask. Use `einstein:relativity`to login (one of the three demo users)
|
2. You are redirected to an idp at https://localhost:9200/oauth2/auth with a login mask. Use `einstein:relativity`to login (one of the three demo users)
|
||||||
3. You are redirected to http://localhost:9100/#/hello the ocis-hello app
|
3. You are redirected to http://localhost:9100/#/hello the ocis-hello app
|
||||||
4. Replace `World` with something else and submit. You should see `Hello %something else%`
|
4. Replace `World` with something else and submit. You should see `Hello %something else%`
|
||||||
|
|
||||||
@@ -132,12 +132,12 @@ This is what hello is: copy and extend!
|
|||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"server": "http://localhost:9140",
|
"server": "https://localhost:9200",
|
||||||
"theme": "owncloud",
|
"theme": "owncloud",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"openIdConnect": {
|
"openIdConnect": {
|
||||||
"metadata_url": "http://localhost:9140/.well-known/openid-configuration",
|
"metadata_url": "https://localhost:9200/.well-known/openid-configuration",
|
||||||
"authority": "http://localhost:9140",
|
"authority": "https://localhost:9200",
|
||||||
"client_id": "web",
|
"client_id": "web",
|
||||||
"response_type": "code",
|
"response_type": "code",
|
||||||
"scope": "openid profile email"
|
"scope": "openid profile email"
|
||||||
|
|||||||
Reference in New Issue
Block a user