From de7b7397b0f126013c7766fd06c455a6a673b5d4 Mon Sep 17 00:00:00 2001 From: M8te <38794725+m8tec@users.noreply.github.com> Date: Fri, 10 Apr 2026 16:42:47 +0200 Subject: [PATCH 1/2] docs(config): add MaxImageUploadSize option Document `MaxImageUploadSize` in the advanced configuration options table. Signed-off-by: M8te <38794725+m8tec@users.noreply.github.com> --- content/en/docs/usage/configuration/options.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/en/docs/usage/configuration/options.md b/content/en/docs/usage/configuration/options.md index eff1206d..a4590133 100644 --- a/content/en/docs/usage/configuration/options.md +++ b/content/en/docs/usage/configuration/options.md @@ -174,6 +174,7 @@ make it all uppercase. Ex: `ND_LOGLEVEL=debug`. See below for all available opti | DiscArtPriority[\*][disccoverart] | `ND_DISCARTPRIORITY` | Configure the priority order for disc-level cover art sources in multi-disc albums. Uses the same pattern format as `CoverArtPriority`. The special keyword `discsubtitle` matches image files whose filenames equal the disc's subtitle | `"disc*.*, cd*.*, cover.*, folder.*, front.*, discsubtitle, embedded"` | | EnableArtworkPrecache | `ND_ENABLEARTWORKPRECACHE` | Enable image pre-caching of new added music | `true` | | EnableArtworkUpload | `ND_ENABLEARTWORKUPLOAD` | Enable artwork upload functionality for playlists, artists, and internet radios via the web UI. Accepted formats: JPEG, PNG, WebP, GIF (max 10 MB). When disabled, only admins can upload artwork | `true` | +| MaxImageUploadSize | `ND_MAXIMAGEUPLOADSIZE` | Maximum allowed image upload size in bytes for artwork uploads | `10485760` | | EnableCoverAnimation | `ND_ENABLECOVERANIMATION` | Controls whether the player in the UI will animate the album cover (rotation) | `true` | | EnableDownloads | `ND_ENABLEDOWNLOADS` | Enable the option in the UI to download music/albums/artists/playlists from the server | `true` | | EnableExternalServices | `ND_ENABLEEXTERNALSERVICES` | Set this to `false` to completely disable ALL external integrations, including the [anonymous data collection][insights] and the nice login background images | `true` | From b8d14e8630f3f174ae746e80c510cedff986c081 Mon Sep 17 00:00:00 2001 From: M8te <38794725+m8tec@users.noreply.github.com> Date: Fri, 10 Apr 2026 17:09:51 +0200 Subject: [PATCH 2/2] docs(config): update MaxImageUploadSize option to allow human-readable strings Signed-off-by: M8te <38794725+m8tec@users.noreply.github.com> --- content/en/docs/usage/configuration/options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/usage/configuration/options.md b/content/en/docs/usage/configuration/options.md index a4590133..2c030540 100644 --- a/content/en/docs/usage/configuration/options.md +++ b/content/en/docs/usage/configuration/options.md @@ -174,7 +174,7 @@ make it all uppercase. Ex: `ND_LOGLEVEL=debug`. See below for all available opti | DiscArtPriority[\*][disccoverart] | `ND_DISCARTPRIORITY` | Configure the priority order for disc-level cover art sources in multi-disc albums. Uses the same pattern format as `CoverArtPriority`. The special keyword `discsubtitle` matches image files whose filenames equal the disc's subtitle | `"disc*.*, cd*.*, cover.*, folder.*, front.*, discsubtitle, embedded"` | | EnableArtworkPrecache | `ND_ENABLEARTWORKPRECACHE` | Enable image pre-caching of new added music | `true` | | EnableArtworkUpload | `ND_ENABLEARTWORKUPLOAD` | Enable artwork upload functionality for playlists, artists, and internet radios via the web UI. Accepted formats: JPEG, PNG, WebP, GIF (max 10 MB). When disabled, only admins can upload artwork | `true` | -| MaxImageUploadSize | `ND_MAXIMAGEUPLOADSIZE` | Maximum allowed image upload size in bytes for artwork uploads | `10485760` | +| MaxImageUploadSize | `ND_MAXIMAGEUPLOADSIZE` | Maximum allowed image upload size in for artwork uploads | `10MB` | | EnableCoverAnimation | `ND_ENABLECOVERANIMATION` | Controls whether the player in the UI will animate the album cover (rotation) | `true` | | EnableDownloads | `ND_ENABLEDOWNLOADS` | Enable the option in the UI to download music/albums/artists/playlists from the server | `true` | | EnableExternalServices | `ND_ENABLEEXTERNALSERVICES` | Set this to `false` to completely disable ALL external integrations, including the [anonymous data collection][insights] and the nice login background images | `true` |