cmd/dendrite-media-api-server: Bump maximum file size to 10MB

This commit is contained in:
Robert Swain 2017-05-09 20:57:59 +02:00
parent 619a77e187
commit 5bb5a28366

View file

@ -42,7 +42,7 @@ func main() {
cfg := config.MediaAPI{ cfg := config.MediaAPI{
ServerName: "localhost", ServerName: "localhost",
BasePath: "/Users/robertsw/dendrite", BasePath: "/Users/robertsw/dendrite",
MaxFileSize: 61440, MaxFileSize: 10 * 1024 * 1024,
DataSource: dataSource, DataSource: dataSource,
} }