Question

The first argument to WSGIDaemonProcess is name like so:

WSGIDaemonProcess name [ options ]

But what does that name map to or affect? Does it matter what it is? If so, to what does it matter?

No correct solution

OTHER TIPS

The name doesn't map to anything else, but other things map to that name.

In particular, if you don't actually have WSGIProcessGroup or process-group options on appropriate configuration directives with that name, then nothing will be delegated to use that set of processes for running the WSGI application. The need to use WSGIProcessGroup is mentioned in the documentation you refer to.

As to the value of name, that is up to you.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top