diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2015-01-01 16:52:39 +0100 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2015-01-01 16:54:11 +0100 |
commit | abd970e6a4381cf5a754f5a44d48aa6067e3bdf8 (patch) | |
tree | 00a86722dae9ab8441b742224e6645276c28eeba /INSTALL | |
parent | 965f908e15c072bb09a9f206bbfe50c843ac3d21 (diff) | |
download | aur-abd970e6a4381cf5a754f5a44d48aa6067e3bdf8.tar.gz aur-abd970e6a4381cf5a754f5a44d48aa6067e3bdf8.tar.xz |
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 <archlinux@cryptocrack.de>
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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 |