Changes between Version 29 and Version 30 of InstallationGuidelinesApacheModWSGI
- Timestamp:
- 09/06/10 09:45:53 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelinesApacheModWSGI
v29 v30 47 47 a2enmod headers 48 48 a2enmod expires 49 vim /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 49 59 vim /etc/apache2/mods-enabled/wsgi.conf 50 60 # Enable to allow Basic Authentication for WebServices … … 52 62 vim /etc/apache2/sites-available/eden 53 63 }}} 54 Refer to the following URLs for WSGI configuration tuning:55 * http://code.google.com/p/modwsgi/wiki/ConfigurationDirectives#WSGIDaemonProcess56 * http://code.google.com/p/modwsgi/wiki/ApplicationIssues#Memory_Constrained_VPS_Systems57 64 {{{ 58 <VirtualHost ip.ip.ip.ip:80>65 <VirtualHost *:80> 59 66 ServerName demo.eden.sahanafoundation.org 60 67 ServerAdmin webmaster@eden.sahanafoundation.org … … 100 107 }}} 101 108 109 Refer 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 102 113 WSGI Installation comments: http://blog.dscpl.com.au/2009/08/problems-with-example-web2py.html 103 114