From f5c54db155bcec0951523fedc8cc603f06871c5b Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Fri, 26 Jan 2024 15:10:06 +0100 Subject: [PATCH] fix(admin): Add a note about JavaScript modules to Nextcloud 28 upgrade guides Signed-off-by: Ferdinand Thiessen --- admin_manual/release_notes/upgrade_to_28.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/admin_manual/release_notes/upgrade_to_28.rst b/admin_manual/release_notes/upgrade_to_28.rst index 6240be0737f..83062436d18 100644 --- a/admin_manual/release_notes/upgrade_to_28.rst +++ b/admin_manual/release_notes/upgrade_to_28.rst @@ -12,6 +12,9 @@ Web server configuration ------------------------ * The recommended :ref:`nginx configuration` changed as Nextcloud Talk now serves audio files with ``.ogg`` / ``.flac`` extension, make sure to add these extensions to the list of static files. +* As some core app now make use of JavaScript modules, make sure your web server is serving ``.mjs`` files with JavaScript MIME type. + When using Apache with ``.htaccess`` configuration this will be done automatically, if your Apache is not configured to use the ``.htaccess`` files make sure ``.mjs`` is added as a file extension for JavaScript in ``conf/mime.types``. + For NGinx please refer to the our recommended :ref:`nginx configuration`. Monitoring ----------