On Jan 20, 11:28 pm, Alexandre Andrade <alexandrema...@gmail.com>
wrote:
> I think is not a good idea.
>
> php requires apache2-prefork (single-thread)
> wsgi works with apache2-mpm (multi-thread)
>
> So, they are incompatible.

Nonsense.

There is no such thing as apache2-mpm so assume you mean worker MPM.

Even so, Apache/mod_wsgi works with either worker or prefork MPM on
UNIX systems and also works on some of the experimental Apache MPMs as
well.

So, you DO NOT need to use worker MPM to use mod_wsgi.

That said and as explained in:

  http://blog.dscpl.com.au/2009/03/load-spikes-and-excessive-memory-usage.html

If using prefork MPM, you are well advised to run the Python web
application in mod_wsgi daemon mode where you can control both number
of processes and threads for the Python web application.

Also read:

  http://code.google.com/p/modwsgi/wiki/ProcessesAndThreading

where you will find an explanation of the various MPMs of Apache plus
daemon mode and what it means to run a Python web application in each.

That all said, there is one restriction on daemon mode and that is
that it isn't available when using Apache 1.3 and is only available
from Apache 2.0 onwards. This is because Apache 1.3 doesn't use Apache
run time library and all the goodies in it that mod_wsgi uses to
implement daemon mode, plus core functionality of Apache which is
required also isn't present.

Graham

> 2010/1/20 vvk <varunk.ap...@gmail.com>
>
>
>
>
>
> > I installed web2py with apache & mod_wsgi. My computer don't have any
> > Domain Name. Another PHP project should be hosted on same machine. How
> > to configure my system to run PHP and web2py at the same time?
>
> > Temporarily, web2py is using http service and https by PHP site by
> > modifying httpd.conf file but any permanent solution ?
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "web2py-users" group.
> > To post to this group, send email to web...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > web2py+unsubscr...@googlegroups.com<web2py%2bunsubscr...@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/web2py?hl=en.
>
> --
> Atenciosamente
>
> --
> =========================
> Alexandre Andrade
> Hipercenter.com
-- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To post to this group, send email to web...@googlegroups.com.
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en.


Reply via email to