mohamed tehami
mohamed tehami

Reputation: 123

Redmine + apache+ Passenger: Passenger still runs as nobody

I'm installing a new version of Redmine under Debian 8. I followed the steps described here: http://www.redmine.org/projects/redmine/wiki/HowTo_Install_Redmine_on_Debian_8_with_Apache2-Passenger

I had some problems with passenger so I installed it using:

gem install passenger
passenger-install-apache2-module

I added

PassengerDefaultUser www-data

on the passenger confing file and on the appache config file as well to avoid permission problems

The problem is that passenger is still running as nobody.

result of top | grep "passenger" gives 3 process named PassengerAgent, 2 of them runs as root and one runs as nobody. What should I do to have the effect of the configuration i added?

I have :

Upvotes: 1

Views: 944

Answers (1)

Kirill Bezrukov
Kirill Bezrukov

Reputation: 607

Try to set www-data as owner for /config.ru file.

Upvotes: 3

Related Questions