spawns FastCGI processes
https://redmine.lighttpd.net/projects/spawn-fcgi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
396 B
9 lines
396 B
13 years ago
|
#!/bin/sh
|
||
|
# Use this as a ./run script with daemontools or runit
|
||
|
# You should replace xxx with the user you want rails to run as (and www-data with the user lighty runs as)
|
||
|
# /path-to-rails should be replaced with the correct path too :)
|
||
|
|
||
|
exec 2>&1
|
||
|
RAILS_ENV="production" \
|
||
|
exec /usr/bin/spawn-fcgi -n -s /var/run/lighttpd/rails-xxx.sock -u xxx -U www-data -- /path-to-rails/public/dispatch.fcgi
|