diff options
author | pjmattal <pjmattal> | 2005-04-14 04:26:45 +0200 |
---|---|---|
committer | pjmattal <pjmattal> | 2005-04-14 04:26:45 +0200 |
commit | 1c4d6432ba3179cbd5e7fd5d2863bf5d943e8ab4 (patch) | |
tree | 2f1d84488862ea95800b79fbeed698d2ee747e9d /web/lib | |
parent | 514314da582cb3ab4aaca2af7feb5bd0be746a61 (diff) | |
download | aur-1c4d6432ba3179cbd5e7fd5d2863bf5d943e8ab4.tar.gz aur-1c4d6432ba3179cbd5e7fd5d2863bf5d943e8ab4.tar.xz |
added necessary things to config.inc.proto
Diffstat (limited to 'web/lib')
-rw-r--r-- | web/lib/config.inc.proto | 11 |
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 |