mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
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>
This commit is contained in:
parent
965f908e15
commit
abd970e6a4
1 changed files with 7 additions and 1 deletions
8
INSTALL
8
INSTALL
|
@ -6,7 +6,12 @@ Setup on Arch Linux
|
||||||
$ cd /srv/http/
|
$ cd /srv/http/
|
||||||
$ git clone git://projects.archlinux.org/aur.git
|
$ 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.
|
3) Copy conf/config.proto to conf/config and adjust the configuration.
|
||||||
|
|
||||||
|
@ -19,6 +24,7 @@ Setup on Arch Linux
|
||||||
$ cd /srv/http/aur/
|
$ cd /srv/http/aur/
|
||||||
$ git clone git://anongit.mindrot.org/openssh.git
|
$ git clone git://anongit.mindrot.org/openssh.git
|
||||||
$ cd openssh
|
$ cd openssh
|
||||||
|
$ git checkout V_6_7_P1
|
||||||
$ git am ../scripts/git-integration/0001-Patch-sshd-for-the-AUR.patch
|
$ git am ../scripts/git-integration/0001-Patch-sshd-for-the-AUR.patch
|
||||||
$ autoreconf
|
$ autoreconf
|
||||||
$ ./configure
|
$ ./configure
|
||||||
|
|
Loading…
Add table
Reference in a new issue