Excellent software and practical tutorials
accessNextcloud official configuration parameterspage.
nextcloudGeneral configuration of the config file of nextcloud network disk, forcibly enable Chinese pages, use APCu memory cache and Memcached data cache, php-GD to generate thumbnails, and use other software to generate large files over 50M, such as: ffmpeg. Thumbnails support video formats.
The following are the configuration files in the common config settings:
'installed' => true, 'updater.release.channel' => 'stable', 'ldapIgnoreNamingRules' => false, 'ldapProviderFactory' => 'OCA\User_LDAP\LDAPProviderFactory', 'default_language' => 'cn', 'default_locale' => 'zh_CN', 'knowledgebaseenabled' => false, 'remember_login_cookie_lifetime' => 606024*15, 'session_lifetime' => 60 * 60 * 24, 'versions_retention_obligation' => 'disabled', 'loglevel' => 3, 'preview_max_x' => 2030, 'preview_max_y' => 1080, 'preview_max_filesize_image' => 50, 'memcache.local' => '\OC\Memcache\APCu', 'memcache.distributed' => '\OC\Memcache\Memcached', 'simpleSignUpLink.shown' => false, 'enable_previews' => true, 'preview_libreoffice_path' => '/usr/bin/libreoffice6.4', 'enabledPreviewProviders' => array ( 0 => 'OC\Preview\TXT', 1 => 'OC\Preview\PDF', 2 => 'OC\Preview\AVI', 3 => 'OC\Preview\Image', 4 => 'OC\Preview\Photoshop', 5 => 'OC\Preview\TIFF', 6 => 'OC\Preview\SVG', 7 => 'OC\Preview\Font', 8 => 'OC\Preview\MP3', 9 => 'OC\Preview\Movie', 10 => 'OC\Preview\MKV', 11 => 'OC\Preview\MP4', 12 => 'OC\Preview\PNG', 13 => 'OC\Preview\GIF', 14 => 'OC\Preview\BMP', ), 'maintenance' => false, 'app_install_overwrite' => array ( 0 => 'files_clipboard', ),
Paste the above file into your config. Check for duplicate fields before pasting.