mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
15 lines
378 B
Protocol Buffer
15 lines
378 B
Protocol Buffer
<?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
|
|
?>
|