forked from SuprDewd/simpletracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
24 lines (20 loc) · 667 Bytes
/
config.php
File metadata and controls
24 lines (20 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
$CONFIG = array(
// Example PostgreSQL configuration
'db' => array(
'connection_string' => 'pgsql:host=localhost;dbname=simpletracker',
'type' => 'pgsql',
'user' => 'simpletracker',
'password' => 'simpletracker',
),
// Example MySQL configuration
// 'db' => array(
// 'connection_string' => 'mysql:host=localhost;dbname=simpletracker',
// 'type' => 'mysql',
// 'user' => 'simpletracker',
// 'password' => 'simpletracker',
// ),
'base_url' => 'https://domain.xyz', // no trailing slash
'site_title' => 'simpletracker',
'max_torrent_size' => 20*1024*1024,
);