diff --git a/changelog/unreleased/settings-in-example-config.md b/changelog/unreleased/settings-in-example-config.md new file mode 100644 index 0000000000..1828e18e37 --- /dev/null +++ b/changelog/unreleased/settings-in-example-config.md @@ -0,0 +1,6 @@ +Bugfix: Add settings API and app endpoints to example config + +We had the ocis-settings API and app endpoints in the builtin config already, but they were missing in the example +config. Added them for consistency. + +https://github.com/owncloud/ocis-proxy/pull/93 diff --git a/config/proxy-example-migration.json b/config/proxy-example-migration.json index 04760b75a7..d2ee433284 100644 --- a/config/proxy-example-migration.json +++ b/config/proxy-example-migration.json @@ -68,7 +68,15 @@ { "endpoint": "/accounts.js", "backend": "http://localhost:9181" - } + }, + { + "endpoint": "/api/v0/settings", + "backend": "http://localhost:9190" + }, + { + "endpoint": "/settings.js", + "backend": "http://localhost:9190" + } ] }, { diff --git a/config/proxy-example.json b/config/proxy-example.json index 28fd674deb..68c2fe3083 100644 --- a/config/proxy-example.json +++ b/config/proxy-example.json @@ -71,6 +71,14 @@ { "endpoint": "/accounts.js", "backend": "http://localhost:9181" + }, + { + "endpoint": "/api/v0/settings", + "backend": "http://localhost:9190" + }, + { + "endpoint": "/settings.js", + "backend": "http://localhost:9190" } ] },