feat: nginx file upload limit set to 50m
This commit is contained in:
parent
0383ec977e
commit
780b6658c4
|
@ -13,7 +13,7 @@ events {
|
||||||
http {
|
http {
|
||||||
include /etc/nginx/mime.types;
|
include /etc/nginx/mime.types;
|
||||||
default_type application/octet-stream;
|
default_type application/octet-stream;
|
||||||
client_max_body_size 40m;
|
client_max_body_size 50m;
|
||||||
map $time_iso8601 $logdate {
|
map $time_iso8601 $logdate {
|
||||||
'~^(?<ymd>\d{4}-\d{2}-\d{2})' $ymd;
|
'~^(?<ymd>\d{4}-\d{2}-\d{2})' $ymd;
|
||||||
default 'date-not-found';
|
default 'date-not-found';
|
||||||
|
|
Loading…
Reference in New Issue