summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpjmattal <pjmattal>2005-04-14 04:26:45 +0200
committerpjmattal <pjmattal>2005-04-14 04:26:45 +0200
commit1c4d6432ba3179cbd5e7fd5d2863bf5d943e8ab4 (patch)
tree2f1d84488862ea95800b79fbeed698d2ee747e9d
parent514314da582cb3ab4aaca2af7feb5bd0be746a61 (diff)
downloadaur-1c4d6432ba3179cbd5e7fd5d2863bf5d943e8ab4.tar.gz
aur-1c4d6432ba3179cbd5e7fd5d2863bf5d943e8ab4.tar.xz
added necessary things to config.inc.proto
-rw-r--r--web/lib/config.inc.proto11
1 files changed, 9 insertions, 2 deletions
diff --git a/web/lib/config.inc.proto b/web/lib/config.inc.proto
index d530fd7e..fcb8b3a2 100644
--- a/web/lib/config.inc.proto
+++ b/web/lib/config.inc.proto
@@ -1,7 +1,14 @@
<?php
+# NOTE: modify these variables if your MySQL setup is different
+#
+$AUR_db_host = "localhost:/tmp/mysql.sock";
+$AUR_db_name = "aur";
+$AUR_db_user = "aur";
+$AUR_db_pass = "aur";
+
# Configuration of directories where things live
-$UPLOAD_DIR = "/aur/temp/";
-$INCOMING_DIR = "/aur/incoming/";
+$UPLOAD_DIR = "/home/aur/unsupported-temp/";
+$INCOMING_DIR = "/home/aur/unsupported/";
$URL_DIR = "/packages/";
# vim: ts=2 sw=2 noet ft=php