mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-03-14 13:18:58 -04:00
Merge pull request #83 from owncloud/fix-external-app-urls
Fix external app urls
This commit is contained in:
6
changelog/unreleased/fix-external-app-urls
Normal file
6
changelog/unreleased/fix-external-app-urls
Normal file
@@ -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
|
||||
@@ -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",
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user