Advertisement
Silverscott

NC - config.php

Apr 12th, 2024 (edited)
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.64 KB | Help | 0 0
  1. <?php
  2. $CONFIG = array (
  3.   'htaccess.RewriteBase' => '/',
  4.   'memcache.local' => '\\OC\\Memcache\\APCu',
  5.   'apps_paths' =>
  6.   array (
  7.     0 =>
  8.     array (
  9.       'path' => '/var/www/html/apps',
  10.       'url' => '/apps',
  11.       'writable' => false,
  12.     ),
  13.     1 =>
  14.     array (
  15.       'path' => '/var/www/html/custom_apps',
  16.       'url' => '/custom_apps',
  17.       'writable' => true,
  18.     ),
  19.   ),
  20.   'upgrade.disable-web' => true,
  21.   'instanceid' => 'oc4am6saj4ny',
  22.   'passwordsalt' => '*',
  23.   'secret' => '*',
  24.   'trusted_domains' =>
  25.   array (
  26.     0 => '*',
  27.     1 => '*',
  28.   ),
  29.   'datadirectory' => '/var/www/html/data',
  30.   'dbtype' => 'mysql',
  31.   'version' => '28.0.4.1',
  32.   'overwrite.cli.url' => '*',
  33.   'dbname' => 'nextcloud',
  34.   'dbhost' => 'nextcloud_db',
  35.   'dbport' => '',
  36.   'dbtableprefix' => 'oc_',
  37.   'mysql.utf8mb4' => true,
  38.   'dbuser' => 'nextcloud',
  39.   'dbpassword' => '*',
  40.   'installed' => true,
  41.   'mail_smtpmode' => 'smtp',
  42.   'mail_smtpsecure' => 'ssl',
  43.   'mail_sendmailmode' => 'smtp',
  44.   'mail_from_address' => '*',
  45.   'mail_domain' => '*',
  46.   'mail_smtphost' => '*',
  47.   'mail_smtpport' => '465',
  48.   'mail_smtpauth' => 1,
  49.   'mail_smtpname' => '*',
  50.   'mail_smtppassword' => '*',
  51.   'app_install_overwrite' =>
  52.   array (
  53.     0 => 'unsplash',
  54.     1 => 'files_ebookreader',
  55.     2 => 'epubreader',
  56.     3 => 'metadata',
  57.     4 => 'ransomware_protection',
  58.     5 => 'files_rightclick',
  59.     6 => 'transmission',
  60.     7 => 'rainloop',
  61.     8 => 'imageconverter',
  62.     9 => 'news',
  63.     10 => 'sharepermissions',
  64.     11 => 'externalpassword',
  65.     12 => 'gpgmailer',
  66.     13 => 'breezedark',
  67.   ),
  68.   'memories.exiftool' => '/var/www/html/custom_apps/memories/bin-ext/exiftool-amd64-glibc',
  69.   'memories.vod.path' => '/var/www/html/custom_apps/memories/bin-ext/go-vod-amd64',
  70.   'memories.index.mode' => '0',
  71.   'enabledPreviewProviders' =>
  72.   array (
  73.     0 => 'OC\\Preview\\Image',
  74.     1 => 'OC\\Preview\\HEIC',
  75.     2 => 'OC\\Preview\\TIFF',
  76.   ),
  77.   'maintenance' => false,
  78.   'maintenance_window_start' => 1,
  79.   'default_phone_region' => 'FR',
  80.   'default_language' => 'fr',
  81.   'default_locale' => 'fr_FR',
  82.   'default_timezone' => 'Europe/Paris',
  83.   'knowledgebaseenabled' => true,
  84.   'auth.bruteforce.protection.enabled' => true,
  85.   'check_for_working_wellknown_setup' => true,
  86.   'logdateformat' => 'F d, Y H:i:s',
  87.   'logtimezone' => 'Europe/Paris',
  88.   'log_rotate_size' => 104857600,
  89.   'trashbin_retention_obligation' => 'auto, 15',
  90.   'memories.db.triggers.fcu' => true,
  91.   'loglevel' => 2,
  92.   'twofactor_enforced' => 'false',
  93.   'twofactor_enforced_groups' =>
  94.   array (
  95.     0 => 'admin',
  96.   ),
  97.   'twofactor_enforced_excluded_groups' =>
  98.   array (
  99.   ),
  100. );
Tags: Nextcloud
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement