Answers for "how to increase nginx maximum file upload size"

2

how to increase nginx maximum file upload size

sudo nano /etc/nginx/nginx.conf
# edit/add the following line 
client_max_body_size 8M; # put the size that is enough
sudo nano /etc/php/php.ini
# edit the following
upload_max_filesize=8M # also put what is enough
Posted by: Guest on January-14-2021

Code answers related to "how to increase nginx maximum file upload size"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language