mirror of
https://github.com/gotify/server.git
synced 2026-05-07 22:06:38 +08:00
11 lines
287 B
Go
11 lines
287 B
Go
package api
|
|
|
|
const (
|
|
// Max size for a client or application entry.
|
|
MaxApplicationClientEntrySize = 64 << 10
|
|
// Maximum upload size of 32MB for blobs and files.
|
|
MaxUploadSize = 32 << 20
|
|
// Catch-all request body limit of 64MB enforced at middleware level.
|
|
MaxBodySize = 64 << 20
|
|
)
|