From 38eda65735e81d2774759a2aa6e9922c7131f830 Mon Sep 17 00:00:00 2001 From: eric Date: Mon, 21 Jun 2004 19:36:54 +0000 Subject: working on the accounts stuff --- web/README.txt | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) (limited to 'web/README.txt') diff --git a/web/README.txt b/web/README.txt index dbc3c6d..938504a 100644 --- a/web/README.txt +++ b/web/README.txt @@ -1,3 +1,48 @@ +Setup on ArchLinux: +=================== +1) Install Apache, MySQL, PHP, and Subversion + # pacman -Sy apache mysql php subversion + +2) Set a local 'hostname' of 'aur' + - Edit /etc/hosts and append 'aur' to loopback address + 127.0.0.1 localhost aur + +3) Configure Apache + - Edit /etc/httpd/conf/httpd.conf and append the following: + Replace MYUSER with your username. + + + Servername aur + DocumentRoot /home/MYUSER/aur/web/html + ErrorLog /var/log/httpd/aur-error.log + CustomLog /var/log/httpd/aur-access.log combined + + Options Indexes FollowSymLinks + AllowOverride All + + + +4) Configure PHP + - Edit /etc/php.ini and uncomment the mysql extension line: + extension=mysql.so + +5) Configure MySQL + - Connect to the mysql client + # mysql -uroot + + - Issue the following commands to the mysql client + mysql> create database AUR; + mysql> grant all privileges on AUR.* to aur@localhost identified by 'aur'; + mysql> flush privileges; + mysql> quit + +6) Check out the AUR project (using the MYUSER from above) + $ cd + $ svn co https://xentac.net/svn/aur/trunk aur + +7) Point your browser to http://aur + + Web Interface: ============== -- cgit v1.2.3-70-g09d2