homepage: https://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 seting up multiple daemontool supervised instances.
Example for spawning two rails instances::
#!/bin/sh
# run script
exec spawn-fcgi -n -s /tmp/fastcgi-rails.sock -u www-rails -U www-data -- /usr/bin/multiwatch -f 2 -- /home/rails/public/dispatch.fcgi
More details in the man page.
- meson as build system
- glib >= 2.16.0
- libev
Setup a build directory build
:
meson setup build --prefix /usr/local
Compile it:
meson compile -C build
Install:
meson install -C build
See man page, e.g. rendered for debian unstable.