Modify php and nginx to change upload file size

This commit is contained in:
Jean-Philippe Murray
2020-06-06 14:20:16 -04:00
parent 2e5cb58c39
commit 08c6218440
4 changed files with 6 additions and 0 deletions

View File

@ -1,4 +1,5 @@
server {
client_max_body_size 64M;
listen 80;
index index.php index.html;
error_log /var/log/nginx/error.log;

View File

@ -0,0 +1,3 @@
file_uploads = On
upload_max_filesize = 64M
post_max_size = 64M