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 imported a YNAB budget with seven years of transactions. The import went well, but I got the error "This file is not a cloud file" afterwards, and the file refused to sync. The underlying error appeared to be a 413 Request entity too large from the file upload endpoint.
Adding this to /etc/nginx/conf.d/[domain]/actual.d seems to have solved the problem:
client_max_body_size 40M;
The text was updated successfully, but these errors were encountered:
Nevermind, found the solution to my issue. Writing it down for future reference + others. I had to restart the whole nginx service, not just the app. So sudo systemctl restart nginx.
I imported a YNAB budget with seven years of transactions. The import went well, but I got the error "This file is not a cloud file" afterwards, and the file refused to sync. The underlying error appeared to be a 413 Request entity too large from the file upload endpoint.
Adding this to /etc/nginx/conf.d/[domain]/actual.d seems to have solved the problem:
client_max_body_size 40M;
The text was updated successfully, but these errors were encountered: