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