Last active
May 19, 2020 13:09
-
-
Save tlylt/3951b99b84d625e6fb686d02a7ce719f to your computer and use it in GitHub Desktop.
Fixing 413 Request Entity Too Large (Nginx)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# You probably need to set a size that is way larger than expected file size, | |
# if not you still may receive this 413 Request entity too large error | |
server { | |
client_max_body_size 100M; | |
... | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment