Changes between Version 17 and Version 18 of InstallationGuidelinesApacheModWSGI
- Timestamp:
- 01/15/10 18:12:32 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelinesApacheModWSGI
v17 v18 23 23 vim /etc/apache2/sites-available/web2py 24 24 }}} 25 25 Refer to the following URL for WSGI configuration tuning 26 [http://code.google.com/p/modwsgi/wiki/ConfigurationDirectives#WSGIDaemonProcess] 26 27 {{{ 27 28 <VirtualHost ip.ip.ip.ip:80> … … 31 32 32 33 WSGIScriptAlias / /var/www/web2py/wsgihandler.py 33 WSGIDaemonProcess web2py user=www-data group=www-data home=/var/www/web2py processes=10 maximum-requests=500 34 ## Edit the process and the maximum-requests to reflect your RAM 35 WSGIDaemonProcess web2py user=www-data group=www-data home=/var/www/web2py processes=5 maximum-requests=50 34 36 35 37 RewriteEngine On