make README a proper formatted README.rst

This commit is contained in:
Stefan Bühler 2013-05-29 12:53:24 +02:00
parent d23de523a6
commit ce9be5cd26
1 changed files with 21 additions and 20 deletions

View File

@ -1,22 +1,18 @@
Description
-----------
:Homepage:
http://redmine.lighttpd.net/projects/multiwatch/wiki
Multiwatch forks multiple instance of one application and keeps them running;
it is made to be used with spawn-fcgi, so all forks share the same fastcgi
socket (no webserver restart needed if you increase/decrease the number of
forks), and it is easier than to setup multiple daemontool supervised instances.
Homepage
--------
* http://redmine.lighttpd.net/projects/multiwatch/wiki
Usage
-----
Example for spawning two rails instances:
Example for spawning two rails instances::
#!/bin/sh
# run script
@ -29,23 +25,28 @@ More details in the man page.
Build dependencies
------------------
* glib >= 2.16.0 (http://www.gtk.org/)
* libev (http://software.schmorp.de/pkg/libev.html)
* cmake or autotools (for snapshots/releases the autotool generated files are included)
* glib >= 2.16.0 (http://www.gtk.org/)
* libev (http://software.schmorp.de/pkg/libev.html)
* cmake or autotools (for snapshots/releases the autotool generated files are included)
Build
-----
* snapshot/release with autotools:
* snapshot/release with autotools::
./configure
make
* build from git: git://git.lighttpd.net/multiwatch.git
* with autotools:
./autogen.sh
./configure
make
* with cmake (should work with snapshots/releases too)
cmake .
make
* build from git: git://git.lighttpd.net/multiwatch.git
* with autotools::
./autogen.sh
./configure
make
* with cmake (should work with snapshots/releases too)::
cmake .
make