Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/aslo/config.php
diff options
context:
space:
mode:
Diffstat (limited to 'aslo/config.php')
-rw-r--r--aslo/config.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/aslo/config.php b/aslo/config.php
new file mode 100644
index 0000000..01fd95a
--- /dev/null
+++ b/aslo/config.php
@@ -0,0 +1,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);
+?>