Completed
Push — master ( 503fbc...d1daf6 )
by Morris
18:37 queued 10s
created
config/config.sample.php 1 patch
Indentation   +134 added lines, -134 removed lines patch added patch discarded remove patch
@@ -41,17 +41,17 @@  discard block
 block discarded – undo
41 41
  */
42 42
 'instanceid' => '',
43 43
 
44
- /**
45
-  * The salt used to hash all passwords, auto-generated by the Nextcloud
46
-  * installer. (There are also per-user salts.) If you lose this salt you lose
47
-  * all your passwords. This example is for documentation only, and you should
48
-  * never use it.
49
-  *
50
-  * @deprecated This salt is deprecated and only used for legacy-compatibility,
51
-  * developers should *NOT* use this value for anything nowadays.
52
-  *
53
-  * 'passwordsalt' => 'd3c944a9af095aa08f',
54
- */
44
+    /**
45
+     * The salt used to hash all passwords, auto-generated by the Nextcloud
46
+     * installer. (There are also per-user salts.) If you lose this salt you lose
47
+     * all your passwords. This example is for documentation only, and you should
48
+     * never use it.
49
+     *
50
+     * @deprecated This salt is deprecated and only used for legacy-compatibility,
51
+     * developers should *NOT* use this value for anything nowadays.
52
+     *
53
+     * 'passwordsalt' => 'd3c944a9af095aa08f',
54
+     */
55 55
 'passwordsalt' => '',
56 56
 
57 57
 /**
@@ -67,10 +67,10 @@  discard block
 block discarded – undo
67 67
  *   ubos-raspberry-pi.local and ubos-raspberry-pi-2.local
68 68
  */
69 69
 'trusted_domains' =>
70
-  array (
70
+    array (
71 71
     'demo.example.org',
72 72
     'otherdomain.example.org',
73
-  ),
73
+    ),
74 74
 
75 75
 
76 76
 /**
@@ -283,10 +283,10 @@  discard block
 block discarded – undo
283 283
  * IMAP (OC_User_IMAP), SMB (OC_User_SMB), and FTP (OC_User_FTP).
284 284
  */
285 285
 'user_backends' => array(
286
-	array(
287
-		'class' => 'OC_User_IMAP',
288
-		'arguments' => array('{imap.gmail.com:993/imap/ssl}INBOX')
289
-	)
286
+    array(
287
+        'class' => 'OC_User_IMAP',
288
+        'arguments' => array('{imap.gmail.com:993/imap/ssl}INBOX')
289
+    )
290 290
 ),
291 291
 
292 292
 /**
@@ -762,9 +762,9 @@  discard block
 block discarded – undo
762 762
  * Defaults to an empty array.
763 763
  */
764 764
 'log.condition' => [
765
-	'shared_secret' => '57b58edb6637fe3059b3595cf9c41b9',
766
-	'users' => ['sample-user'],
767
-	'apps' => ['files'],
765
+    'shared_secret' => '57b58edb6637fe3059b3595cf9c41b9',
766
+    'users' => ['sample-user'],
767
+    'apps' => ['files'],
768 768
 ],
769 769
 
770 770
 /**
@@ -818,18 +818,18 @@  discard block
 block discarded – undo
818 818
  *  - iOS client app id: ``1125420102``
819 819
  */
820 820
 'customclient_desktop' =>
821
-	'https://nextcloud.com/install/#install-clients',
821
+    'https://nextcloud.com/install/#install-clients',
822 822
 'customclient_android' =>
823
-	'https://play.google.com/store/apps/details?id=com.nextcloud.client',
823
+    'https://play.google.com/store/apps/details?id=com.nextcloud.client',
824 824
 'customclient_ios' =>
825
-	'https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8',
825
+    'https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8',
826 826
 'customclient_ios_appid' =>
827
-		'1125420102',
827
+        '1125420102',
828 828
 /**
829
- * Apps
830
- *
831
- * Options for the Apps folder, Apps store, and App code checker.
832
- */
829
+         * Apps
830
+         *
831
+         * Options for the Apps folder, Apps store, and App code checker.
832
+         */
833 833
 
834 834
 /**
835 835
  * When enabled, admins may install apps from the Nextcloud app store.
@@ -847,11 +847,11 @@  discard block
 block discarded – undo
847 847
  * indicates if a Web server can write files to that folder.
848 848
  */
849 849
 'apps_paths' => array(
850
-	array(
851
-		'path'=> '/var/www/nextcloud/apps',
852
-		'url' => '/apps',
853
-		'writable' => true,
854
-	),
850
+    array(
851
+        'path'=> '/var/www/nextcloud/apps',
852
+        'url' => '/apps',
853
+        'writable' => true,
854
+    ),
855 855
 ),
856 856
 
857 857
 /**
@@ -916,8 +916,8 @@  discard block
 block discarded – undo
916 916
  * Defaults to ``''`` (empty string)
917 917
  */
918 918
 'preview_office_cl_parameters' =>
919
-	' --headless --nologo --nofirststartwizard --invisible --norestore '.
920
-	'--convert-to png --outdir ',
919
+    ' --headless --nologo --nofirststartwizard --invisible --norestore '.
920
+    '--convert-to png --outdir ',
921 921
 
922 922
 /**
923 923
  * Only register providers that have been explicitly enabled
@@ -961,15 +961,15 @@  discard block
 block discarded – undo
961 961
  *  - OC\Preview\XBitmap
962 962
  */
963 963
 'enabledPreviewProviders' => array(
964
-	'OC\Preview\PNG',
965
-	'OC\Preview\JPEG',
966
-	'OC\Preview\GIF',
967
-	'OC\Preview\HEIC',
968
-	'OC\Preview\BMP',
969
-	'OC\Preview\XBitmap',
970
-	'OC\Preview\MP3',
971
-	'OC\Preview\TXT',
972
-	'OC\Preview\MarkDown'
964
+    'OC\Preview\PNG',
965
+    'OC\Preview\JPEG',
966
+    'OC\Preview\GIF',
967
+    'OC\Preview\HEIC',
968
+    'OC\Preview\BMP',
969
+    'OC\Preview\XBitmap',
970
+    'OC\Preview\MP3',
971
+    'OC\Preview\TXT',
972
+    'OC\Preview\MarkDown'
973 973
 ),
974 974
 
975 975
 /**
@@ -1045,11 +1045,11 @@  discard block
 block discarded – undo
1045 1045
 
1046 1046
 /**
1047 1047
  * Extra SSL options to be used for configuration.
1048
-  *
1048
+ *
1049 1049
  * Defaults to an empty array.
1050 1050
  */
1051 1051
 'openssl' => array(
1052
-	'config' => '/absolute/location/of/openssl.cnf',
1052
+    'config' => '/absolute/location/of/openssl.cnf',
1053 1053
 ),
1054 1054
 
1055 1055
 /**
@@ -1097,11 +1097,11 @@  discard block
 block discarded – undo
1097 1097
  * for more information.
1098 1098
  */
1099 1099
 'redis' => [
1100
-	'host' => 'localhost', // can also be a unix domain socket: '/tmp/redis.sock'
1101
-	'port' => 6379,
1102
-	'timeout' => 0.0,
1103
-	'password' => '', // Optional, if not defined no password will be used.
1104
-	'dbindex' => 0, // Optional, if undefined SELECT will not run and will use Redis Server's default DB Index.
1100
+    'host' => 'localhost', // can also be a unix domain socket: '/tmp/redis.sock'
1101
+    'port' => 6379,
1102
+    'timeout' => 0.0,
1103
+    'password' => '', // Optional, if not defined no password will be used.
1104
+    'dbindex' => 0, // Optional, if undefined SELECT will not run and will use Redis Server's default DB Index.
1105 1105
 ],
1106 1106
 
1107 1107
 /**
@@ -1127,13 +1127,13 @@  discard block
 block discarded – undo
1127 1127
  * See https://redis.io/topics/cluster-spec for details about the Redis cluster
1128 1128
  */
1129 1129
 'redis.cluster' => [
1130
-	'seeds' => [ // provide some/all of the cluster servers to bootstrap discovery, port required
1131
-		'localhost:7000',
1132
-		'localhost:7001'
1133
-	],
1134
-	'timeout' => 0.0,
1135
-	'read_timeout' => 0.0,
1136
-	'failover_mode' => \RedisCluster::FAILOVER_ERROR
1130
+    'seeds' => [ // provide some/all of the cluster servers to bootstrap discovery, port required
1131
+        'localhost:7000',
1132
+        'localhost:7001'
1133
+    ],
1134
+    'timeout' => 0.0,
1135
+    'read_timeout' => 0.0,
1136
+    'failover_mode' => \RedisCluster::FAILOVER_ERROR
1137 1137
 ],
1138 1138
 
1139 1139
 
@@ -1141,35 +1141,35 @@  discard block
 block discarded – undo
1141 1141
  * Server details for one or more memcached servers to use for memory caching.
1142 1142
  */
1143 1143
 'memcached_servers' => array(
1144
-	// hostname, port and optional weight. Also see:
1145
-	// http://www.php.net/manual/en/memcached.addservers.php
1146
-	// http://www.php.net/manual/en/memcached.addserver.php
1147
-	array('localhost', 11211),
1148
-	//array('other.host.local', 11211),
1144
+    // hostname, port and optional weight. Also see:
1145
+    // http://www.php.net/manual/en/memcached.addservers.php
1146
+    // http://www.php.net/manual/en/memcached.addserver.php
1147
+    array('localhost', 11211),
1148
+    //array('other.host.local', 11211),
1149 1149
 ),
1150 1150
 
1151 1151
 /**
1152 1152
  * Connection options for memcached, see http://apprize.info/php/scaling/15.html
1153 1153
  */
1154 1154
 'memcached_options' => array(
1155
-	// Set timeouts to 50ms
1156
-	\Memcached::OPT_CONNECT_TIMEOUT => 50,
1157
-	\Memcached::OPT_RETRY_TIMEOUT =>   50,
1158
-	\Memcached::OPT_SEND_TIMEOUT =>    50,
1159
-	\Memcached::OPT_RECV_TIMEOUT =>    50,
1160
-	\Memcached::OPT_POLL_TIMEOUT =>    50,
1155
+    // Set timeouts to 50ms
1156
+    \Memcached::OPT_CONNECT_TIMEOUT => 50,
1157
+    \Memcached::OPT_RETRY_TIMEOUT =>   50,
1158
+    \Memcached::OPT_SEND_TIMEOUT =>    50,
1159
+    \Memcached::OPT_RECV_TIMEOUT =>    50,
1160
+    \Memcached::OPT_POLL_TIMEOUT =>    50,
1161 1161
 
1162
-	// Enable compression
1163
-	\Memcached::OPT_COMPRESSION =>          true,
1162
+    // Enable compression
1163
+    \Memcached::OPT_COMPRESSION =>          true,
1164 1164
 
1165
-	// Turn on consistent hashing
1166
-	\Memcached::OPT_LIBKETAMA_COMPATIBLE => true,
1165
+    // Turn on consistent hashing
1166
+    \Memcached::OPT_LIBKETAMA_COMPATIBLE => true,
1167 1167
 
1168
-	// Enable Binary Protocol
1169
-	\Memcached::OPT_BINARY_PROTOCOL =>      true,
1168
+    // Enable Binary Protocol
1169
+    \Memcached::OPT_BINARY_PROTOCOL =>      true,
1170 1170
 
1171
-	// Binary serializer vill be enabled if the igbinary PECL module is available
1172
-	//\Memcached::OPT_SERIALIZER => \Memcached::SERIALIZER_IGBINARY,
1171
+    // Binary serializer vill be enabled if the igbinary PECL module is available
1172
+    //\Memcached::OPT_SERIALIZER => \Memcached::SERIALIZER_IGBINARY,
1173 1173
 ),
1174 1174
 
1175 1175
 
@@ -1215,61 +1215,61 @@  discard block
 block discarded – undo
1215 1215
  * One way to test is applying for a trystack account at http://trystack.org/
1216 1216
  */
1217 1217
 'objectstore' => [
1218
-	'class' => 'OC\\Files\\ObjectStore\\Swift',
1219
-	'arguments' => [
1220
-		// trystack will use your facebook id as the user name
1221
-		'username' => 'facebook100000123456789',
1222
-		// in the trystack dashboard go to user -> settings -> API Password to
1223
-		// generate a password
1224
-		'password' => 'Secr3tPaSSWoRdt7',
1225
-		// must already exist in the objectstore, name can be different
1226
-		'container' => 'nextcloud',
1227
-		// prefix to prepend to the fileid, default is 'oid:urn:'
1228
-		'objectPrefix' => 'oid:urn:',
1229
-		// create the container if it does not exist. default is false
1230
-		'autocreate' => true,
1231
-		// required, dev-/trystack defaults to 'RegionOne'
1232
-		'region' => 'RegionOne',
1233
-		// The Identity / Keystone endpoint
1234
-		'url' => 'http://8.21.28.222:5000/v2.0',
1235
-		// required on dev-/trystack
1236
-		'tenantName' => 'facebook100000123456789',
1237
-		// dev-/trystack uses swift by default, the lib defaults to 'cloudFiles'
1238
-		// if omitted
1239
-		'serviceName' => 'swift',
1240
-		// The Interface / url Type, optional
1241
-		'urlType' => 'internal'
1242
-	],
1218
+    'class' => 'OC\\Files\\ObjectStore\\Swift',
1219
+    'arguments' => [
1220
+        // trystack will use your facebook id as the user name
1221
+        'username' => 'facebook100000123456789',
1222
+        // in the trystack dashboard go to user -> settings -> API Password to
1223
+        // generate a password
1224
+        'password' => 'Secr3tPaSSWoRdt7',
1225
+        // must already exist in the objectstore, name can be different
1226
+        'container' => 'nextcloud',
1227
+        // prefix to prepend to the fileid, default is 'oid:urn:'
1228
+        'objectPrefix' => 'oid:urn:',
1229
+        // create the container if it does not exist. default is false
1230
+        'autocreate' => true,
1231
+        // required, dev-/trystack defaults to 'RegionOne'
1232
+        'region' => 'RegionOne',
1233
+        // The Identity / Keystone endpoint
1234
+        'url' => 'http://8.21.28.222:5000/v2.0',
1235
+        // required on dev-/trystack
1236
+        'tenantName' => 'facebook100000123456789',
1237
+        // dev-/trystack uses swift by default, the lib defaults to 'cloudFiles'
1238
+        // if omitted
1239
+        'serviceName' => 'swift',
1240
+        // The Interface / url Type, optional
1241
+        'urlType' => 'internal'
1242
+    ],
1243 1243
 ],
1244 1244
 
1245 1245
 /**
1246 1246
  * To use swift V3
1247 1247
  */
1248 1248
 'objectstore' => [
1249
-	'class' => 'OC\\Files\\ObjectStore\\Swift',
1250
-	'arguments' => [
1251
-		'autocreate' => true,
1252
-		'user' => [
1253
-			'name' => 'swift',
1254
-			'password' => 'swift',
1255
-			'domain' => [
1256
-				'name' => 'default',
1257
-			],
1258
-		],
1259
-		'scope' => [
1260
-			'project' => [
1261
-				'name' => 'service',
1262
-				'domain' => [
1263
-					'name' => 'default',
1264
-				],
1265
-			],
1266
-		],
1267
-		'tenantName' => 'service',
1268
-		'serviceName' => 'swift',
1269
-		'region' => 'regionOne',
1270
-		'url' => 'http://yourswifthost:5000/v3',
1271
-		'bucket' => 'nextcloud',
1272
-	],
1249
+    'class' => 'OC\\Files\\ObjectStore\\Swift',
1250
+    'arguments' => [
1251
+        'autocreate' => true,
1252
+        'user' => [
1253
+            'name' => 'swift',
1254
+            'password' => 'swift',
1255
+            'domain' => [
1256
+                'name' => 'default',
1257
+            ],
1258
+        ],
1259
+        'scope' => [
1260
+            'project' => [
1261
+                'name' => 'service',
1262
+                'domain' => [
1263
+                    'name' => 'default',
1264
+                ],
1265
+            ],
1266
+        ],
1267
+        'tenantName' => 'service',
1268
+        'serviceName' => 'swift',
1269
+        'region' => 'regionOne',
1270
+        'url' => 'http://yourswifthost:5000/v3',
1271
+        'bucket' => 'nextcloud',
1272
+    ],
1273 1273
 ],
1274 1274
 
1275 1275
 
@@ -1309,8 +1309,8 @@  discard block
 block discarded – undo
1309 1309
  * encryption in MySQL or specify a custom wait timeout on a cheap hoster.
1310 1310
  */
1311 1311
 'dbdriveroptions' => array(
1312
-	PDO::MYSQL_ATTR_SSL_CA => '/file/path/to/ca_cert.pem',
1313
-	PDO::MYSQL_ATTR_INIT_COMMAND => 'SET wait_timeout = 28800'
1312
+    PDO::MYSQL_ATTR_SSL_CA => '/file/path/to/ca_cert.pem',
1313
+    PDO::MYSQL_ATTR_INIT_COMMAND => 'SET wait_timeout = 28800'
1314 1314
 ),
1315 1315
 
1316 1316
 /**
@@ -1367,10 +1367,10 @@  discard block
 block discarded – undo
1367 1367
  *  - pgsql (PostgreSQL)
1368 1368
  */
1369 1369
 'supportedDatabases' => array(
1370
-	'sqlite',
1371
-	'mysql',
1372
-	'pgsql',
1373
-	'oci',
1370
+    'sqlite',
1371
+    'mysql',
1372
+    'pgsql',
1373
+    'oci',
1374 1374
 ),
1375 1375
 
1376 1376
 /**
@@ -1630,8 +1630,8 @@  discard block
 block discarded – undo
1630 1630
  * WARNING: only use this if you know what you are doing
1631 1631
  */
1632 1632
 'csrf.optout' => array(
1633
-	'/^WebDAVFS/', // OS X Finder
1634
-	'/^Microsoft-WebDAV-MiniRedir/', // Windows webdav drive
1633
+    '/^WebDAVFS/', // OS X Finder
1634
+    '/^Microsoft-WebDAV-MiniRedir/', // Windows webdav drive
1635 1635
 ),
1636 1636
 
1637 1637
 /**
Please login to merge, or discard this patch.