[aur-dev] [PATCH] INSTALL: Add some notes

Lukas Fleischer archlinux at cryptocrack.de
Thu Jan 1 16:30:04 UTC 2015


* Add more details on how to configure the web server.
* Clarify that the OpenSSH patch is build against OpenSSH 6.7p1.

Signed-off-by: Lukas Fleischer <archlinux at cryptocrack.de>
---
 INSTALL | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/INSTALL b/INSTALL
index 72e7539..2368db1 100644
--- a/INSTALL
+++ b/INSTALL
@@ -6,7 +6,12 @@ Setup on Arch Linux
    $ cd /srv/http/
    $ git clone git://projects.archlinux.org/aur.git
 
-2) Setup a web server with PHP and MySQL.
+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.
 
@@ -19,6 +24,7 @@ Setup on Arch Linux
    $ cd /srv/http/aur/
    $ git clone git://anongit.mindrot.org/openssh.git
    $ cd openssh
+   $ git checkout V_6_7_P1
    $ git am ../scripts/git-integration/0001-Patch-sshd-for-the-AUR.patch
    $ autoreconf
    $ ./configure
-- 
2.2.1


More information about the aur-dev mailing list