Skip to content
New issue

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

Add client_max_body_size parameter for uploading Apps #423

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Nginx started out as an open-source web server designed for maximum performance

#### Prerequisites

- One server with Ubuntu 20.04 installed for Nginx Load Balancer.
- One server with Ubuntu 20.04 installed for MongoDB Server (Optional).
- One server with Ubuntu 24.04 installed for Nginx Load Balancer.
- One server with Ubuntu 24.04 installed for MongoDB Server (Optional).

> This document is compatible with all Debian-based OS (Debian, Ubuntu, etc.)

Expand Down Expand Up @@ -231,6 +231,7 @@ In that file, copy the following contents. Please change the content in curl bra


sendfile on;
client_max_body_size 250M;
tcp_nopush on;
tcp_nodelay on;
server_tokens off;
Expand Down