From 8da274781b2b11b6f5b45dc26356424c7168d8d2 Mon Sep 17 00:00:00 2001 From: vichansson Date: Wed, 13 Mar 2024 15:10:06 +0200 Subject: [PATCH] M #-: Increase fireedge file upload limit (#2980) The default file upload limit in FireEdge is set to 20Kb, which isn't even a fraction of any normal ISO image. This changes that limit to 10Gib so that most image uploads should work by default. --- src/fireedge/etc/sunstone/sunstone-server.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fireedge/etc/sunstone/sunstone-server.conf b/src/fireedge/etc/sunstone/sunstone-server.conf index cf8ae618cf..19d9164b9b 100644 --- a/src/fireedge/etc/sunstone/sunstone-server.conf +++ b/src/fireedge/etc/sunstone/sunstone-server.conf @@ -15,7 +15,7 @@ sunstone_prepend: '' tmpdir: '/var/tmp' # Max size upload file (bytes) -max_upload_file_size: 20000 +max_upload_file_size: 10737418240 # 10 GiB ################################################################################ @@ -116,4 +116,4 @@ langs: # Time Zone # You may use it to change the time zone. # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones -# currentTimeZone: "Europe/Madrid" \ No newline at end of file +# currentTimeZone: "Europe/Madrid"