I’ve succesfully tested and run a simple wsgi app in daemon mode by adding.
WSGIDaemonProcess wsgi_proc
WSGIProcessGroup wsgi_proc
I would expect to have the new process printed out with
ps aux| grep wsgi_proc
However that is not the case, but the wsgi app is working fine.
What am i missing?
Read the documentation for the ‘display-name’ option to WSGIDaemonProcess.