]> git.mxchange.org Git - friendica.git/blob - view/en/smarty3/htconfig.tpl
0cceabb653a9ae7060030785b90466d8a6efa24b
[friendica.git] / view / en / smarty3 / htconfig.tpl
1 {{*
2  *      AUTOMATICALLY GENERATED TEMPLATE
3  *      DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
4  *
5  *}}
6 <?php
7
8 // Set the following for your MySQL installation
9 // Copy or rename this file to .htconfig.php
10
11 $db_host = '{{$dbhost}}';
12 $db_user = '{{$dbuser}}';
13 $db_pass = '{{$dbpass}}';
14 $db_data = '{{$dbdata}}';
15
16 // If you are using a subdirectory of your domain you will need to put the
17 // relative path (from the root of your domain) here.
18 // For instance if your URL is 'http://example.com/directory/subdirectory',
19 // set $a->path to 'directory/subdirectory'. 
20
21 $a->path = '{{$urlpath}}';
22  
23 // Choose a legal default timezone. If you are unsure, use "America/Los_Angeles".
24 // It can be changed later and only applies to timestamps for anonymous viewers.
25
26 $default_timezone = '{{$timezone}}';
27
28 // What is your site name?
29
30 $a->config['sitename'] = "My Friend Network";
31
32 // Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED.
33 // Be certain to create your own personal account before setting 
34 // REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on 
35 // the registration page. REGISTER_APPROVE requires you set 'admin_email'
36 // to the email address of an already registered person who can authorise
37 // and/or approve/deny the request.
38
39 $a->config['register_policy'] = REGISTER_OPEN;
40 $a->config['register_text'] = '';
41 $a->config['admin_email'] = '{{$adminmail}}';
42
43 // Maximum size of an imported message, 0 is unlimited
44
45 $a->config['max_import_size'] = 200000;
46
47 // maximum size of uploaded photos
48
49 $a->config['system']['maximagesize'] = 800000;
50
51 // Location of PHP command line processor
52
53 $a->config['php_path'] = '{{$phpath}}';
54
55 // Location of global directory submission page.
56
57 $a->config['system']['directory_submit_url'] = 'http://dir.friendica.com/submit';
58 $a->config['system']['directory_search_url'] = 'http://dir.friendica.com/directory?search=';
59
60 // PuSH - aka pubsubhubbub URL. This makes delivery of public posts as fast as private posts
61
62 $a->config['system']['huburl'] = 'http://pubsubhubbub.appspot.com';
63
64 // Server-to-server private message encryption (RINO) is allowed by default. 
65 // Encryption will only be provided if this setting is true and the
66 // PHP mcrypt extension is installed on both systems 
67
68 $a->config['system']['rino_encrypt'] = true;
69
70 // default system theme
71
72 $a->config['system']['theme'] = 'duepuntozero';
73
74 // By default allow pseudonyms
75
76 $a->config['system']['no_regfullname'] = true;