A simple method to modify the size of Nginx uploaded files

A simple method to modify the size of Nginx uploaded files

Original link: https://vien.tech/article/138

Preface

I used Laravel to make a blog that supports markdown (a side note: it is free and open source, welcome to use VienBlog), and supports file upload. Then when uploading files, I found that files larger than 1M failed to upload because Nginx limits the size of uploaded files. I just need to modify the default upload file size limit of Nginx.

Here’s how:

We find the Nginx configuration file

nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

You can see that the print result is in /etc/nginx/nginx.conf , then edit it

vim /etc/nginx/nginx.conf

Add client_max_body_size 10m in http, as shown below

[...]
http {
 [...]
 client_max_body_size 10m;
 [...]
}
[...]

Reload configuration or restart nginx

service nginx reload

or

service nginx restart

Congratulations, Coca-Cola, you can do whatever you want.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • How to modify the upload file size limit in nginx
  • Solution to Nginx timeout when uploading large files
  • How to modify the file upload size limit of Nginx and PHP
  • Nginx upload file full cache solution
  • nginx:413 Request Entity Too Large solution - modify the size of PHP uploaded files
  • Solution to nginx upload file size error 500
  • Solve the PHP file upload size limit problem by modifying the configuration (nginx+php)
  • Modify the upload file size limit of Nginx and Apache
  • Solve the problem of building file upload and download service with nginx+lua

<<:  Detailed explanation of MySQL syntax, special symbols and regular expressions

>>:  How to start a Vue.js project

Recommend

MySQL DML language operation example

Additional explanation, foreign keys: Do not use ...

How to clear the validation prompt in element form validation

Table of contents Problem scenario: Solution: 1. ...

What does the n after int(n) in MySQL mean?

You may already know that the length 1 of int(1) ...

Detailed installation and configuration tutorial of mysql5.7 on CentOS

Install Make sure your user has permission to ins...

An example of the difference between the id and name attributes in input

I have been making websites for a long time, but I...

Docker installation and configuration command code examples

Docker installation Install dependency packages s...

How to implement https with nginx and openssl

If the server data is not encrypted and authentic...

XHTML introductory tutorial: text formatting and special characters

<br />This section introduces how to impleme...

Linux system repair mode (single user mode)

Table of contents Preface 1. Common bug fixes in ...

How to implement CSS mask full screen center alignment

The specific code is as follows: <style> #t...

Summary of MySQL common SQL statements including complex SQL queries

1. Complex SQL queries 1.1. Single table query (1...

How to dynamically modify container port mapping in Docker

Preface: Docker port mapping is often done by map...

Example method of deploying react project on nginx

Test project: react-demo Clone your react-demo pr...

W3C Tutorial (15): W3C SMIL Activities

SMIL adds support for timing and media synchroniz...

Summary of the most commonly used knowledge points about ES6 new features

Table of contents 1. Keywords 2. Deconstruction 3...