Increase nginx client_max_body_size to 50MB for image uploads

This commit is contained in:
Claude
2026-01-25 03:09:03 +00:00
parent 75e04f722d
commit 8dfa7d3e17
+3
View File
@@ -2,6 +2,9 @@ server {
listen 80;
server_name localhost;
# Allow large file uploads (50MB)
client_max_body_size 50M;
root /usr/share/nginx/html;
index index.html;