I have Nginx with Passenger. In nginx.conf, I have a line:
user pass users;
and the Nginx process works with the user "pass", but the Passenger * processes work with the user "nobody".
I can run the standalone Passenger:
sudo passanger start -e production -p 80
How can I run Passenger with Nginx with my user user?
source
share