increase upload limit via browser

This commit is contained in:
chrislu
2025-07-14 08:42:15 -07:00
parent 24eff93d9a
commit 406aaf7c14
2 changed files with 2 additions and 8 deletions

View File

@@ -220,7 +220,7 @@ func (h *FileBrowserHandlers) UploadFile(c *gin.Context) {
}
// Parse multipart form
err := c.Request.ParseMultipartForm(100 << 20) // 100MB max memory
err := c.Request.ParseMultipartForm(1 << 30) // 1GB max memory for large file uploads
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": "Failed to parse multipart form: " + err.Error()})
return