diff --git a/changelog/unreleased/update-docs-30_06_2020.md b/changelog/unreleased/update-docs-30_06_2020.md new file mode 100644 index 000000000..641d6f1d5 --- /dev/null +++ b/changelog/unreleased/update-docs-30_06_2020.md @@ -0,0 +1,7 @@ +Enhancement: Add new REVA config variables to docs + +With the default setup of running oCIS with ocis-proxy we need to set `REVA_DATAGATEWAY_URL` and +`REVA_FRONTEND_URL` environment variables. We added those to the configuration instructions in +the dev docs. + +https://github.com/owncloud/ocis/pull/345 diff --git a/docs/basic-remote-setup.md b/docs/basic-remote-setup.md index f067fc53c..0bf195aeb 100644 --- a/docs/basic-remote-setup.md +++ b/docs/basic-remote-setup.md @@ -58,6 +58,8 @@ REVA_OIDC_ISSUER=https://your-host:9200 \ PHOENIX_OIDC_AUTHORITY=https://your-host:9200 \ PHOENIX_WEB_CONFIG_SERVER=https://your-host:9200 \ PHOENIX_OIDC_METADATA_URL=https://your-host:9200/.well-known/openid-configuration \ +REVA_DATAGATEWAY_URL=https://your-server:9200/data \ +REVA_FRONTEND_URL=https://your-server:9200 \ PROXY_TRANSPORT_TLS_KEY=./certs/your-host.key \ PROXY_TRANSPORT_TLS_CERT=./certs/your-host.crt \ KONNECTD_TLS=0 \