blob: fcb8b3a234faab38eb051b199238e8b5b012614d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?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 = "/home/aur/unsupported-temp/";
$INCOMING_DIR = "/home/aur/unsupported/";
$URL_DIR = "/packages/";
# vim: ts=2 sw=2 noet ft=php
?>
|