1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/funkwhale_ynh.git synced 2024-09-03 18:36:24 +02:00

set upload size limit to 100M

This commit is contained in:
Jean-Baptiste Holcroft 2019-01-23 21:26:44 +01:00
parent 7225e446d4
commit 9c6ee6e951

View file

@ -15,7 +15,7 @@ location @rewrites {
location /api/ {
include __FINALPATH__/code/deploy/funkwhale_proxy.conf;
# this is needed if you have file import via upload enabled
client_max_body_size 30M;
client_max_body_size 100M;
proxy_pass http://127.0.0.1:__PORT__/api/;
}