mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-02-05 00:29:40 +03:00
Unable to upload attachments #263
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @RihanArfan on GitHub (Mar 25, 2019).
I'm having issues trying to upload attachments to an item.
When trying to get an attachment, I get the following error in my browser console.
POST https://*vault.example.com*/api/ciphers/*string*/attachment 413@dani-garcia commented on GitHub (Mar 25, 2019):
Do you get any errors in the log? Is the server behind a proxy that could be modifying the requests in some way?
@BlackDex commented on GitHub (Mar 25, 2019):
Also, please check if the proxy has some kind of upload limitation.
Nginx for instances has some lower values by default. I don't know if this is also the case with other proxy tools.
@RihanArfan commented on GitHub (Mar 28, 2019):
Bitwarden_rs is behind an Nginx reverse proxy and no error appears in the server log. I'll take a look at my Nginx configuration.
@mprasil commented on GitHub (Mar 29, 2019):
413is usually a response for too big requests. How big is the attachment you're trying to upload?@RihanArfan commented on GitHub (Mar 29, 2019):
Was Nginx side. Just had to set the maximum upload side in my config. Thanks!