2009/1/29 Jeff Hammerbacher <[email protected]>: > > Hey, > > I'm trying to use mod_wsgi 2.3 with Apache 2.2.6 on FC8, with Apache > serving over SSL. Apache is able to serve static pages just fine over > SSL, but when I try to get it to serve a Django app, I get segfaults > with > > [alert] mod_wsgi (pid=24962): Unable to determine home directory for > uid=-1. > > in the apache error_log. From looking at the mod_wsgi source, it looks > like geteuid() is returning -1 somehow, which seems like very odd > behavior. > > Does anyone have experience with this failure mode? I'd appreciate any > assistance in debugging the problem.
See: http://code.google.com/p/modwsgi/issues/detail?id=40 Ensure that WSGIDaemonProcess directive is defined after User/Group directives. In other words, only include all the snippet config files after all the main Apache configuration. Graham --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "modwsgi" 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/modwsgi?hl=en -~----------~----~----~----~------~----~------~--~---
