increased maximum post data

This commit is contained in:
2022-12-19 14:01:29 +01:00
parent 570e3b1942
commit d8d4df765e
@@ -25,7 +25,7 @@ server {
include fastcgi.conf;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PHP_VALUE "upload_max_filesize=250M;\n error_reporting=E_ALL;";
fastcgi_param PHP_VALUE "upload_max_filesize=250M;\n post_max_size=250M;\n error_reporting=E_ALL;";
}
location ~ /\.ht {
@@ -39,4 +39,4 @@ server {
# add_header Pragma "public";
# add_header Cache-Control "public, max-age=31536000,no-transform";
# }
}
}