Alternative startup methods: Difference between revisions

From diaspora* project wiki
m (Fix init script link)
(+ood notice)
Line 1: Line 1:
This page is for listing alternative methods for starting up the Diaspora service automatical or in some manner other than calling the ./script/start
This page is for listing alternative methods for starting up the Diaspora service automatical or in some manner other than calling the ./script/start
{{Out of date}}{{Note|1=Is this still working? If it is, it should be linked in some meaningful places, like [[FAQ for pod maintainers]], [[Installation guides]], or similar.}}


== Init Scripts & Upstart ==
== Init Scripts & Upstart ==

Revision as of 03:32, 17 August 2017

This page is for listing alternative methods for starting up the Diaspora service automatical or in some manner other than calling the ./script/start

Out of dateOut of date:This page's accuracy may be compromised due to out-of-date information. Please help improve the page by updating it. There may be additional information on the talk page.
NoteNote:Is this still working? If it is, it should be linked in some meaningful places, like FAQ for pod maintainers, Installation guides, or similar.

Init Scripts & Upstart

Sample /etc/diaspora.conf required by the init script is given below

export SERVERNAME=localhost
export ENVIRONMENT_URL=https://localhost
export RAILS_ENV=production
export DB=postgres

systemd

daemontools

god

Passenger

All you need is the following snippet of Apache configuration in e.g. a <VirtualHost> block:

DocumentRoot $diasporapath/public
PassengerAppRoot $diasporapath
PassengerAppEnv production
PassengerRuby $rubypath

Replace $diasporapath with the path where you installed diaspora*, and replace $rubypath with the Ruby binary Passenger should use (probably what RVM installed, if you use RVM).

Note, however, that this does not automatically start Sidekiq. You need to do that yourself.