From 8eea6b115924b1fd49684927cfba692cda4cc29a Mon Sep 17 00:00:00 2001 From: Andras Timar Date: Wed, 27 Nov 2024 00:02:41 +0100 Subject: [PATCH] Clarify the remote font config setting a bit Some people test Nextcloud and Collabora Online without setting up SSL. For security reasons, Collabora Online production builds refuse to load remote configuration via http://. It is possible to use http:// only with debug builds, that users build for themselves. The feature simply does not work, when someone tries http:// with a production build, only logs will tell "Remote config url should only use HTTPS protocol" Signed-off-by: Andras Timar --- src/components/AdminSettings.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/AdminSettings.vue b/src/components/AdminSettings.vue index 4ca5e687e1..a64bef5073 100644 --- a/src/components/AdminSettings.vue +++ b/src/components/AdminSettings.vue @@ -509,7 +509,7 @@ export default { return this.hostErrors.some(x => x) }, fontHint() { - return t('richdocuments', 'Make sure to set this URL: {url} in the coolwsd.xml file of your Collabora Online server to ensure the added fonts get loaded automatically.', + return t('richdocuments', 'Make sure to set this URL: {url} in the coolwsd.xml file of your Collabora Online server to ensure the added fonts get loaded automatically. Please note that http:// will only work for debug builds of Collabora Online. In production you must use https:// for remote font config.', { url: this.fontHintUrl }, ) },