]> git.mxchange.org Git - friendica.git/blob - htconfig.php
Merge branch 'develop' into rewrites/coding-convention-split2
[friendica.git] / htconfig.php
1 <?php
2
3 // If automatic system installation fails:
4
5 // Copy or rename this file to .htconfig.php
6
7 // Why .htconfig.php? Because it contains sensitive information which could
8 // give somebody complete control of your database. Apache's default
9 // configuration denies access to and refuses to serve any file beginning
10 // with .ht
11
12 // Then set the following for your MySQL installation
13
14 $db_host = 'your.mysqlhost.com';
15 $db_user = 'mysqlusername';
16 $db_pass = 'mysqlpassword';
17 $db_data = 'mysqldatabasename';
18
19 // Set the database connection charset to UTF8.
20 // Changing this value will likely corrupt the special characters.
21 // You have been warned.
22 $a->config['system']['db_charset'] = "utf8mb4";
23
24 // Choose a legal default timezone. If you are unsure, use "America/Los_Angeles".
25 // It can be changed later and only applies to timestamps for anonymous viewers.
26
27 $default_timezone = 'America/Los_Angeles';
28
29 // Default system language
30
31 $a->config['system']['language'] = 'en';
32
33 // What is your site name?
34
35 $a->config['sitename'] = "Friendica Social Network";
36
37 // Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED.
38 // Be certain to create your own personal account before setting
39 // REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on
40 // the registration page. REGISTER_APPROVE requires you set 'admin_email'
41 // to the email address of an already registered person who can authorise
42 // and/or approve/deny the request.
43
44 // In order to perform system administration via the admin panel, admin_email
45 // must precisely match the email address of the person logged in.
46
47 $a->config['register_policy'] = REGISTER_OPEN;
48 $a->config['register_text'] = '';
49 $a->config['admin_email'] = '';
50
51 // Maximum size of an imported message, 0 is unlimited
52
53 $a->config['max_import_size'] = 200000;
54
55 // maximum size of uploaded photos
56
57 $a->config['system']['maximagesize'] = 800000;
58
59 // Location of PHP command line processor
60
61 $a->config['php_path'] = 'php';
62
63 // PuSH - aka pubsubhubbub URL. This makes delivery of public posts as fast as private posts
64
65 $a->config['system']['huburl'] = '[internal]';
66
67 // Server-to-server private message encryption (RINO) is allowed by default.
68 // Encryption will only be provided if this setting is set to a non zero value
69 // set to 0 to disable, 2 to enable, 1 is deprecated
70
71 $a->config['system']['rino_encrypt'] = 2;
72
73 // allowed themes (change this from admin panel after installation)
74
75 $a->config['system']['allowed_themes'] = 'quattro,vier,duepuntozero,smoothly';
76
77 // default system theme
78
79 $a->config['system']['theme'] = 'vier';
80
81
82 // By default allow pseudonyms
83
84 $a->config['system']['no_regfullname'] = true;
85
86 //Deny public access to the local directory
87 //$a->config['system']['block_local_dir'] = false;
88
89 // Location of the global directory
90 $a->config['system']['directory'] = 'http://dir.friendi.ca';
91
92 // Allowed protocols in link URLs; HTTP protocols always are accepted
93 $a->config['system']['allowed_link_protocols'] = array('ftp', 'ftps', 'mailto', 'cid', 'gopher');