Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/aslo/config.php
blob: 01fd95a0d2a23e77cdcb8196002fdfef33e01330 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

/**
 * DB_USER, DB_PASS, DB_NAME, DB_HOST, DB_PORT
 * This database has read/write capabilities.  Host and port default to localhost and 3306.
 */
define('DB_HOST', '127.0.0.1');
define('DB_PORT', '3306');
define('DB_USER', 'remora');
define('DB_PASS', 'remora');
define('DB_NAME', 'remora');

/**
 * Timeout which blacklists downloads from the same IP
 */
define('SITE_BLACKLIST_TIMEOUT', 5);
?>