Setup on Arch Linux =================== 1) Clone the AUR project: $ cd /srv/http/ $ git clone git://projects.archlinux.org/aurweb.git 2) Setup a web server with PHP and MySQL. Configure the web server to redirect all URLs to /index.php/foo/bar/. The following block can be used with nginx: location ~ .* { rewrite ^/(.*)$ /index.php/$1 last; } 3) Copy conf/config.proto to conf/config and adjust the configuration. 4) Create a new MySQL database and a user and import the AUR SQL schema: $ mysql -uaur -p AUR