EzDevInfo.com

fapws3

Fast Asynchronous Python Web Server (based on libev)

Compiling FAPWS3 on Windows 7?

I found no information whatsoever on how to install FAPWS3 on my Win7 machine.

Help would be immensely appreciated! :)


Source: (StackOverflow)

Mod_wsgi versus fapws3 - Django

is there a difference between using FAPWS3 and MOD_WSGI when dealing with Django?

FAPWS3 seems alot faster when serving requests toward Python scripts. I would like to know if I'm missing out anything. :)

Any ideas?


Source: (StackOverflow)

Advertisements

django with nginx + uwsgi does not show templates

On the Django development server, django app works fine. But once I setup the production test run, I get only the text contents, where template views are not shown as intended. What am I going wrong?

I have django 1.5 latest. Nginx - 0.8.54 uWSGI - 1.2.5

cmd for uWSGI:

  sudo uwsgi --ini test.ini

test.ini content:

[uwsgi]
# set the http port
http = :8080
python_path = /home/test/Desktop/IT_mgmt/IT_mgmt/settings.py/
# change to django project directory
chdir = /home/test/Desktop/IT_mgmt
# load django
module = IT_mgmt.wsgi

Source: (StackOverflow)