From 0e6087b785d891e97b837638886426b6643059c5 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Tue, 30 Jun 2020 12:26:32 +0200 Subject: [PATCH 1/2] Add two new environment variables to basic setup docs --- docs/basic-remote-setup.md | 2 ++ 1 file changed, 2 insertions(+) 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 \ From 6be3f130e2dcd088671798c8b3d65960abea8527 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Tue, 30 Jun 2020 12:30:45 +0200 Subject: [PATCH 2/2] Add changelog item --- changelog/unreleased/update-docs-30_06_2020.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 changelog/unreleased/update-docs-30_06_2020.md 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