On Oct 23, 8:03 pm, msoulier <[email protected]> wrote:
> On Oct 23, 11:54 am, gert <[email protected]> wrote:
>
> > Nope it does not when configured properly, Graham wil explain :)
> > But first tell us which version you are using, your apache conf and
> > python version.
>
> Versions are above.
>
> > Note that mod_ssl is leaking memory.
>
> It doesn't seem to leak if I disable mod_wsgi.
>
> My config is simple, I'm using the default embedding config with a
> simple Alias and wsgi-script handler.
>
> # WSGI config for teleworker
> Alias /server-manager/django/teleworker /etc/e-smith/web/django/
> teleworker/boot.wsgi
>
> <Directory /etc/e-smith/web/django/teleworker>
>     Options ExecCGI
>     SetHandler wsgi-script
>     Order allow,deny
>     Allow from all
> </Directory>
>
> I had to use Alias instead of WSGIScriptAlias due to the precedence of
> existing apache aliases. Legacy interface.
>
> How can I configure this so it doesn't leak?
>

Try this with trunk version because I forgot where
WSGILazyInitialization On was introduced

WSGIDaemonProcess www python-path=/root/www user=www group=www
processes=1 threads=2 display-name="wsgi: www"
WSGIProcessGroup www
WSGIApplicationGroup %{GLOBAL}
WSGILazyInitialization On
WSGIRestrictEmbedded On
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to