You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I’m running Huly Selfhost using Docker Compose and encountering issues when uploading files larger than 1MB. Files under 1MB upload successfully, but larger files fail with the following errors in the browser console:
POST https://huly.todohub.id/files 413 (Payload Too Large)
Uncaught (in promise) Error: Access to storage is not allowed from this context
I’ve already set client_max_body_size 100M in my Nginx configuration, but the issue persists. It seems there might be an additional limitation in the Huly application or a misconfiguration with MinIO/storage.
Steps to Reproduce
Deploy Huly Selfhost using the provided compose.yml (attached below).
Configure Nginx with client_max_body_size 100M in .huly.nginx.
Restart all services with docker compose up -d.
Attempt to upload a file larger than 1MB (e.g., a 5MB ZIP file) via the Huly interface.
Observe the error in the browser console.
Expected Behavior
Files up to 100MB should upload successfully since Nginx is configured to allow this size.
Actual Behavior
Uploads fail for files >1MB with HTTP 413 and a "storage access" error, despite the Nginx setting.
Environment
Huly Version: ${HULY_VERSION} (replace with your version from compose.yml, e.g., v0.6.429)
OS: [e.g., Ubuntu 22.04]
Docker Compose: [e.g., version 2.20.2]
Domain: huly.todohub.id
Browser: [e.g., Chrome 122.0]
Configuration
Here’s my compose.yml:
(paste your entire compose.yml here)
The text was updated successfully, but these errors were encountered:
Description
I’m running Huly Selfhost using Docker Compose and encountering issues when uploading files larger than 1MB. Files under 1MB upload successfully, but larger files fail with the following errors in the browser console:
POST https://huly.todohub.id/files 413 (Payload Too Large)
Uncaught (in promise) Error: Access to storage is not allowed from this context
I’ve already set
client_max_body_size 100M
in my Nginx configuration, but the issue persists. It seems there might be an additional limitation in the Huly application or a misconfiguration with MinIO/storage.Steps to Reproduce
compose.yml
(attached below).client_max_body_size 100M
in.huly.nginx
.docker compose up -d
.Expected Behavior
Files up to 100MB should upload successfully since Nginx is configured to allow this size.
Actual Behavior
Uploads fail for files >1MB with HTTP 413 and a "storage access" error, despite the Nginx setting.
Environment
${HULY_VERSION}
(replace with your version fromcompose.yml
, e.g.,v0.6.429
)huly.todohub.id
Configuration
Here’s my
compose.yml
:(paste your entire compose.yml here)
The text was updated successfully, but these errors were encountered: