From fb3dcd61d4a0256ecce06097626380e91a4545fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20=C3=81lvarez?= Date: Wed, 8 Jan 2014 09:24:57 +0100 Subject: [PATCH] =?UTF-8?q?A=C3=B1adidas=20configuraciones=20de=20nginx=20?= =?UTF-8?q?y=20uwsgi=20al=20README=20(por=20ponerlo=20en=20alg=C3=BAn=20si?= =?UTF-8?q?tio)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/README b/README index e502fa8..ac48ac6 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ -La clave está aquí: https://github.com/xergio/silabas/blob/master/home/silabea.py +La clave de todo esto está aquí: https://github.com/xergio/silabas/blob/master/home/silabea.py -Software creado gracias a: +- Software creado gracias a: nginx http://www.nginx.org python http://www.python.org @@ -8,7 +8,7 @@ django http://www.django-project.com redis http://redis.io bootstrap http://twitter.github.com/bootstrap -Páginas de referencia para crear el algoritmo: +- Páginas de referencia para crear el algoritmo: http://www.fismat.umich.mx/~karina/tesisLicenciatura/capitulo2.html http://es.wikipedia.org/wiki/S%C3%ADlaba @@ -18,3 +18,31 @@ http://www.galeon.com/la-poesia/ortograf.pdf http://es.wikipedia.org/wiki/Di%C3%A9resis http://es.wikipedia.org/wiki/Diptongo http://es.wikipedia.org/wiki/Triptongo + +- Configuración de nginx: + +server { + listen 80; + server_name silabas.xrg.es; + index index.html; + + location / { + include uwsgi_params; + uwsgi_pass unix:/tmp/uwsgi-silabas.sock; + } + + location ~ ^/(media/|static/|img/|js/|css/|fonts/|robots.txt|humans.txt|favicon.ico) { + root /home/salvarez/www/silabas.xrg.es/public; + access_log off; + expires 1h; + } +} + +- Configuración de uWSGI (/etc/init/uwsgi.conf): + +description "uwsgi silabas" +start on runlevel [2345] +stop on runlevel [06] + +exec uwsgi --chdir=/home/salvarez/www/silabas.xrg.es --module=silabas.wsgi --env DJANGO_SETTINGS_MODULE=silabas.settings --master --pidfile=/tmp/uwsgi-silabas.pid --socket=/tmp/uwsgi-silabas.sock --processes=2 --uid=33 --gid=33 --harakiri=10 --max-requests=5000 --vacuum --daemonize=/var/log/uwsgi-silabas.log +