Hello uWSGIers, I am able to successfully launch both the uwsgi process and nginx process. But when I make a request to the localhost port 80, I still only receive the nginx response instead of the uwsgi one (which I use in conjuction with web.py).
background: I installed uwsgi using the ppa repository and sudo apt-get install. https://launchpad.net/~stevecrozz/+archive/ppa The version that was installed: 0.9.6.2 (64bit). I started the process with the following command line uwsgi -s 127.0.0.1:9001 -w testapp -d logfile -b 25000 I launched the process from within the testapp folder in daemon mode (-d) writing to logfile and with a sufficient buffer (25000). I installed nginx from source. The version that was installed: 0.8.53 http://nginx.org/en/download.html I used the web.pyfile that was given as an example on this uwsgi page http://projects.unbit.it/uwsgi/wiki/Example Here is the specific file I used: http://gist.github.com/646964 I configured the nginx conf file based on this uwsgi page http://projects.unbit.it/uwsgi/wiki/RunOnNginx Here is the conf file I specifically used: http://gist.github.com/646960 Notes: I tried running uwsgi with both tcp and unix sockets (and reconfigured nginx parameters appropriately). But that didn’t have an effect. The only message that gives an indication of something wrong in the log file: *** WARNING: you are running uWSGI without its master process manager *** I tried running uwsgi as a standalone http server as that is now supposedly possible: http://projects.unbit.it/uwsgi/wiki/HTTPserver But, that started the process but calls to the ip address return as empty (as in older versions without the embedded http server).
_______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
