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 vim /etc/nginx/nginx.conf Add [...] 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:
|
<<: Detailed explanation of MySQL syntax, special symbols and regular expressions
>>: How to start a Vue.js project
Additional explanation, foreign keys: Do not use ...
Table of contents Problem scenario: Solution: 1. ...
You may already know that the length 1 of int(1) ...
Install Make sure your user has permission to ins...
I have been making websites for a long time, but I...
Docker installation Install dependency packages s...
If the server data is not encrypted and authentic...
<br />This section introduces how to impleme...
Table of contents Preface 1. Common bug fixes in ...
The specific code is as follows: <style> #t...
1. Complex SQL queries 1.1. Single table query (1...
Preface: Docker port mapping is often done by map...
Test project: react-demo Clone your react-demo pr...
SMIL adds support for timing and media synchroniz...
Table of contents 1. Keywords 2. Deconstruction 3...