From abd970e6a4381cf5a754f5a44d48aa6067e3bdf8 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Thu, 1 Jan 2015 16:52:39 +0100 Subject: INSTALL: Add some notes * 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 --- INSTALL | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'INSTALL') 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 -- cgit v1.2.3-54-g00ecf