On May 29, 1:07 am, Michael Ellis <[EMAIL PROTECTED]> wrote:
> Thanks, John. I found a clunky solution (see next post), but I like
> your solution better. I'm usingmod_wsgiin daemon mode, but Django
> seems to be running as 'nobody'. Here's mymod_wsgidirective in
> httpd.conf's Virtualhost section:
>
> WSGIDaemonProcess user1 threads=15 display-name=%{GROUP}
> WSGIProcessGroup user1
> WSGIApplicationGroup %{GLOBAL}
>
> Any suggestions?
To run as a different user/group, use the 'user' and 'group' options
to WSGIDaemonProcess.
WSGIDaemonProcess user1 threads=15 user=me group=me display-name=%
{GROUP}
Substitute 'me' in each as appropriate.
See mod_wsgi documentation for more details.
Graham
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---