Changes between Version 29 and Version 30 of InstallationGuidelinesApacheModWSGI


Ignore:
Timestamp:
09/06/10 09:45:53 (14 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelinesApacheModWSGI

    v29 v30  
    4747a2enmod headers
    4848a2enmod expires
     49vim /etc/apache2/mods-enabled/apache2.conf
     50    <IfModule mpm_prefork_module>
     51    # Recycle threads to avoid memory leaks
     52    MaxRequestsPerChild   1024
     53
     54    <IfModule mpm_worker_module>
     55    # Recycle threads to avoid memory leaks
     56    MaxRequestsPerChild   1024
     57
     58
    4959vim /etc/apache2/mods-enabled/wsgi.conf
    5060    # Enable to allow Basic Authentication for WebServices
     
    5262vim /etc/apache2/sites-available/eden
    5363}}}
    54 Refer to the following URLs for WSGI configuration tuning:
    55  * http://code.google.com/p/modwsgi/wiki/ConfigurationDirectives#WSGIDaemonProcess
    56  * http://code.google.com/p/modwsgi/wiki/ApplicationIssues#Memory_Constrained_VPS_Systems
    5764{{{
    58 <VirtualHost ip.ip.ip.ip:80>
     65<VirtualHost *:80>
    5966  ServerName demo.eden.sahanafoundation.org
    6067  ServerAdmin webmaster@eden.sahanafoundation.org
     
    100107}}}
    101108
     109Refer to the following URLs for WSGI configuration tuning:
     110 * http://code.google.com/p/modwsgi/wiki/ConfigurationDirectives#WSGIDaemonProcess
     111 * http://code.google.com/p/modwsgi/wiki/ApplicationIssues#Memory_Constrained_VPS_Systems
     112
    102113WSGI Installation comments: http://blog.dscpl.com.au/2009/08/problems-with-example-web2py.html
    103114