diff options
author | Michael Elkins <melkins@tislabs.com> | 2013-02-05 21:45:08 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2013-02-05 21:45:08 +0000 |
commit | 74eb88e28724a35b77b2630211b500fd124e79f0 (patch) | |
tree | a97563ce972e30db445aa57edbcc8f408afe49c9 | |
parent | 9b98060d8b686a42625ccdd2221ad4a829e45d54 (diff) |
the apache configuration directive is WSGIDaemonProcess, not WSGIDaemonMode (despite the feature being called "daemon mode")
svn path=/trunk/; revision=5032
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -5198,7 +5198,7 @@ done IFS=':' read user group <<_EOF $enable_wsgi_daemon_mode _EOF - WSGI_DAEMON_PROCESS="WSGIDaemonMode rpkigui user=$user ${group:+group=}${group} display-name=%{GROUP}" + WSGI_DAEMON_PROCESS="WSGIDaemonProcess rpkigui user=$user ${group:+group=}${group} display-name=%{GROUP}" WSGI_PROCESS_GROUP="WSGIProcessGroup rpkigui" diff --git a/configure.ac b/configure.ac index dea92b4d..85cb19f7 100644 --- a/configure.ac +++ b/configure.ac @@ -489,7 +489,7 @@ then IFS=':' read user group <<_EOF $enable_wsgi_daemon_mode _EOF - AC_SUBST(WSGI_DAEMON_PROCESS, "WSGIDaemonMode rpkigui user=$user ${group:+group=}${group} display-name=%{GROUP}") + AC_SUBST(WSGI_DAEMON_PROCESS, "WSGIDaemonProcess rpkigui user=$user ${group:+group=}${group} display-name=%{GROUP}") AC_SUBST(WSGI_PROCESS_GROUP, "WSGIProcessGroup rpkigui") AC_MSG_RESULT([running mod_wsgi in daemon mode with user "$user" and group "${group:-default}"]) fi |