Changes between Version 5 and Version 6 of InstallationGuidelines/Cherokee


Ignore:
Timestamp:
05/26/11 18:37:14 (14 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelines/Cherokee

    v5 v6  
    66http://web2py.com/AlterEgo/default/show/17
    77
    8 === uwsgi ===
    9 uwsgi allows different virtual hosts to reload their modules without restarting for other users.
     8=== uWSGI ===
     9uWSGI allows different virtual hosts to reload their modules without restarting for other users.
     10 * http://www.cherokee-project.com/doc/cookbook_uwsgi.html
    1011
    11  * http://www.cherokee-project.com/doc/cookbook_uwsgi.html
    12  * lifeeth runs this
     12==== Install uWSGI ====
     13Needs installing from Source:
     14{{{
     15apt-get install -y libxml2-dev make
     16wget http://projects.unbit.it/downloads/uwsgi-0.9.7.2.tar.gz
     17tar zxvf uwsgi-0.9.7.2.tar.gz
     18cd uwsgi-0.9.7.2
     19make
     20cp uwsgi /usr/local/bin
     21cd ..
     22}}}
     23
     24==== Install Cherokee ====
     25Whilst there is a version in Squeee, better to install the latest to gain performance advantages on static content:
     26{{{
     27apt-get install -y gettext libgeoip-dev libssl-dev rrdtool
     28wget http://www.cherokee-project.com/download/1.2/1.2.98/cherokee-1.2.98.tar.gz
     29tar zxvf cherokee-1.2.98.tar.gz
     30cd cherokee-1.2.98
     31./configure
     32make
     33make install
     34cd ..
     35}}}
    1336
    1437----