We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Em caso de uma configuração assim:
server { server_name amigo.com; listen 8000; limit_client_body_size 8M; location / { limit_client_body_size 2M; } location /static/images { limit_client_body_size 1G; } location /static { limit_client_body_size 2K; } location /img { } }
default
8.388.608 bytes
/
2.097.152 bytes
/static/images
1.073.741.824 bytes
/staic
2048 bytes
/img
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Como é a configuração do limit_client_body_size:
Em caso de uma configuração assim:
default
é de um payload de8.388.608 bytes
./
é de um payload de2.097.152 bytes
./static/images
é de um payload de1.073.741.824 bytes
./staic
é de um payload de2048 bytes
./img
recebe o payload default do server8.388.608 bytes
.The text was updated successfully, but these errors were encountered: