Skip to content

Instantly share code, notes, and snippets.

@tlylt
Last active May 19, 2020 13:09
Show Gist options
  • Save tlylt/3951b99b84d625e6fb686d02a7ce719f to your computer and use it in GitHub Desktop.
Save tlylt/3951b99b84d625e6fb686d02a7ce719f to your computer and use it in GitHub Desktop.
Fixing 413 Request Entity Too Large (Nginx)
# 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