WSGIDaemonProcess
WSGIDaemonProcess is an Apache mod_wsgi directive that defines a daemon process group for running Python WSGI applications. It tells Apache to start and manage a set of separate interpreter processes that host one or more WSGI applications, isolating Python code from Apache’s own worker processes.
Each daemon group can be configured with resources and environment settings. When used together with the WSGIProcessGroup
Common options include processes, threads, maximum-requests, display-name, user, group, python-home, and python-path. These control how many
Example: WSGIDaemonProcess app1 processes=2 threads=25 display-name=%{GROUP} python-home=/var/www/venv python-path=/var/www/app