mirror of
https://github.com/YunoHost-Apps/synapse_ynh.git
synced 2024-09-03 20:26:38 +02:00
nginx max_upload_size
This commit is contained in:
parent
2a0a99362a
commit
ef46161638
1 changed files with 12 additions and 0 deletions
|
@ -10,6 +10,18 @@ source /usr/share/yunohost/helpers
|
|||
|
||||
# Stop script if errors
|
||||
ynh_abort_if_errors
|
||||
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
||||
|
||||
get__max_upload_size() {
|
||||
max_upload_size=$(ynh_app_setting_get --app $app --key max_upload_size)
|
||||
echo "${max_upload_size}"
|
||||
}
|
||||
|
||||
set__max_upload_size() {
|
||||
ynh_write_var_in_file --file=/etc/matrix-$app/homeserver.yaml --key=max_upload_size --value="${max_upload_size}"
|
||||
sed -i -r "s|client_max_body_size\s+[[:digit:]]+M;|client_max_body_size ${max_upload_size}M;|g" "/etc/nginx/conf.d/$domain.d/$app.conf
|
||||
ynh_add_nginx_conf
|
||||
}
|
||||
|
||||
|
||||
#=================================================
|
||||
|
|
Loading…
Reference in a new issue