diff --git a/changelog/unreleased/fix-external-app-urls b/changelog/unreleased/fix-external-app-urls new file mode 100644 index 0000000..4d5fbef --- /dev/null +++ b/changelog/unreleased/fix-external-app-urls @@ -0,0 +1,6 @@ +Bugfix: Fix external app URLs + +The URLs for the default set of external apps was hardcoded to localhost:9200. We fixed that by using relative paths instead. + +https://github.com/owncloud/product/issues/218 +https://github.com/owncloud/ocis-phoenix/pull/83 diff --git a/pkg/service/v0/service.go b/pkg/service/v0/service.go index 3ddf558..6ff9853 100644 --- a/pkg/service/v0/service.go +++ b/pkg/service/v0/service.go @@ -72,11 +72,11 @@ func (p Phoenix) getPayload() (payload []byte, err error) { p.config.Phoenix.Config.ExternalApps = []config.ExternalApp{ { ID: "accounts", - Path: "https://localhost:9200/accounts.js", + Path: "/accounts.js", }, { ID: "settings", - Path: "https://localhost:9200/settings.js", + Path: "/settings.js", }, } }