]> git.mxchange.org Git - friendica.git/blob - view/it/smarty3/htconfig.tpl
Merge remote-tracking branch 'friendica/master' into mail_notification_cleanup
[friendica.git] / view / it / 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'] = "La Mia Rete di Amici";
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'] = 'http://pubsubhubbub.appspot.com';
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