]> git.mxchange.org Git - friendica.git/blob - tests/datasets/config/.htconfig.php
Add rel="noopener noreferrer" to all target="_blank" links
[friendica.git] / tests / datasets / config / .htconfig.php
1 <?php
2 /**
3  * A test .htconfig file
4  */
5
6 $db_host = 'testhost';
7 $db_user = 'testuser';
8 $db_pass = 'testpw';
9 $db_data = 'testdb';
10
11 $pidfile = '/var/run/friendica.pid';
12
13 // Set the database connection charset to UTF8.
14 // Changing this value will likely corrupt the special characters.
15 // You have been warned.
16 $a->config['system']['db_charset'] = "anotherCharset";
17
18 // Choose a legal default timezone. If you are unsure, use "America/Los_Angeles".
19 // It can be changed later and only applies to timestamps for anonymous viewers.
20 $default_timezone = 'Europe/Berlin';
21 $lang = 'fr';
22
23 // What is your site name?
24 $a->config['sitename'] = "Friendica My Network";
25
26 // Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED.
27 // Be certain to create your own personal account before setting
28 // REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on
29 // the registration page. REGISTER_APPROVE requires you set 'admin_email'
30 // to the email address of an already registered person who can authorise
31 // and/or approve/deny the request.
32 // In order to perform system administration via the admin panel, admin_email
33 // must precisely match the email address of the person logged in.
34 $a->config['register_policy'] = REGISTER_OPEN;
35 $a->config['register_text'] = 'A register text';
36 $a->config['admin_email'] = 'admin@test.it';
37 $a->config['admin_nickname'] = 'Friendly admin';
38
39 // Maximum size of an imported message, 0 is unlimited
40 $a->config['max_import_size'] = 999;
41
42 // maximum size of uploaded photos
43 $a->config['system']['maximagesize'] = 666;
44
45 // Location of PHP command line processor
46 $a->config['php_path'] = '/another/php';
47
48 // PuSH - aka pubsubhubbub URL. This makes delivery of public posts as fast as private posts
49 $a->config['system']['huburl'] = '[internal]';
50
51 // allowed themes (change this from admin panel after installation)
52 $a->config['system']['allowed_themes'] = 'quattro,vier,duepuntozero';
53
54 // default system theme
55 $a->config['system']['theme'] = 'frio';
56
57 // By default allow pseudonyms
58 $a->config['system']['no_regfullname'] = true;
59
60 //Deny public access to the local directory
61 //$a->config['system']['block_local_dir'] = false;
62 // Location of the global directory
63 $a->config['system']['directory'] = 'http://another.url';