· 7 years ago · May 01, 2018, 04:50 PM
1?php
2
3return array(
4 /**
5 * Mod Respository Location
6 *
7 * This is the location of your mod reposistory. INCLUDE a trailing slash!
8 * This can be a URL or an absolute file location.
9 *
10 **/
11 'repo_location' => '/var/www/mod',
12
13 /**
14 * Mirror Location
15 *
16 * This is where the launcher will be told to search for your files. If your
17 * repo location is already a URL you can use the same location here.
18 *
19 **/
20 'mirror_url' => 'http://solder.jomlua.de/mod',
21
22 /**
23 * MD5 Connect Timeout
24 *
25 * This is the amount of time Solder will wait before giving up trying to
26 * connect to a URL to perform a MD5 checksum.
27 *
28 **/
29 'md5_connect_timeout' => 5,
30
31 /**
32 * MD5 Hashing Timeout
33 *
34 * This is the amount of time Solder will wait before giving up trying to
35 * calculate the MD5 checksum.
36 *
37 **/
38 'md5_file_timeout' => 30,
39
40 /**
41 * Amazon S3 Integration
42 *
43 * If you would like to use Amazon S3 for serving your pack resources set this to
44 * true and fill in your AWS information below.
45 */
46 'use_s3' => false,
47
48 /**
49 * Amazon AWS Access Key
50 */
51 'access_key' => '',
52
53 /**
54 * Amazon AWS Secret Key
55 */
56 'secret_key' => '',
57
58 /**
59 * Amazon S3 Bucket
60 *
61 * This is the bucket that will be used to store your pack resources
62 */
63 'bucket' => 'solder',
64);
65
66?>