Bonjour
jâaimerai modifier les valeur par default du quota des utilisateur ,
celle-ci son configurer a 1GB 5GB 10GB
la seul solution que jâai actuelement et de faire une commande via SSH
afin de forcer le nouveau quota
jâai modifier le fichier config.php en lui incluant des nouvelles valeur mais nextcloud nâas pas lâair de les prendre en charge via le config
quelquâun aurais t-il une solution ?
voici le fichier config.php
<?php
$CONFIG = array (
'instanceid' => 'instance_id_here',
'passwordsalt' => 'password_salt_here',
'secret' => 'secret_here',
'trusted_domains' =>
array (
0 => 'your_domain_here',
),
'datadirectory' => '/path/to/your/data/directory',
'dbtype' => 'mysql',
'version' => '29.0.3.4',
'overwrite.cli.url' => 'http://your_url_here',
'dbname' => 'database_name_here',
'dbhost' => 'database_host_here',
'dbport' => '',
'dbtableprefix' => 'table_prefix_here',
'mysql.utf8mb4' => true,
'dbuser' => 'database_user_here',
'dbpassword' => 'database_password_here',
'installed' => true,
'mail_smtpmode' => 'smtp',
'mail_sendmailmode' => 'smtp',
'mail_from_address' => 'from_address_here',
'mail_domain' => 'mail_domain_here',
'mail_smtphost' => 'smtp_host_here',
'mail_smtpport' => 'smtp_port_here',
'mail_smtpauth' => 1,
'mail_smtpname' => 'smtp_username_here',
'mail_smtppassword' => 'smtp_password_here',
'loglevel' => 4,
'app_install_overwrite' =>
array (
0 => 'app_name_here',
),
'quota_include_external_storage' => true,
'custom_quota_options' => [
'50 GB',
'100 GB',
'250 GB',
'500 GB',
'1 TB',
'2 TB',
],
);
bien Ă vous