<div dir="ltr"><div>yeah, your uwsgi instance is not working or somehow socket is simply not there.<br></div><div><div><br></div><div><div>and for the application-agnostic configuration; you basically have to pass some parameters to your upstreams about the current request and then handle these params from them. see there is a similar example on nginx documentation:</div>



<div><a href="http://wiki.nginx.org/Configuration#Python_via_uWSGI" target="_blank">http://wiki.nginx.org/Configuration#Python_via_uWSGI</a></div><div><br></div><div>go dig nginx and uwsgi config files from my multi-app scenario:</div>


<div>
<a href="https://github.com/kirpit/webstack" target="_blank">https://github.com/kirpit/webstack</a><br></div><div><br></div></div></div><div>cheers.</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Jan 21, 2013 at 7:54 PM, Silvio Siefke <span dir="ltr"><<a href="mailto:siefke_listen@web.de" target="_blank">siefke_listen@web.de</a>></span> wrote:<br>



<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Hello,<br>
<br>
<br>
i try for a tutorial Python / Django and Nginx unite.<br>
<br>
<a href="http://www.collabspot.com/2012/08/14/setting-up-nginx-uwsgi-python-ubuntu-12-04/" target="_blank">http://www.collabspot.com/2012/08/14/setting-up-nginx-uwsgi-python-ubuntu-12-04/</a><br>
<br>
That sounds like a multi-hosting, and was not particularly difficult. But<br>
something is wrong with the system.<br>
<br>
When i want on the website, i become a 502 Bad Gateway. The Socket<br>
would not be create.<br>
<br>
Configuration:<br>
<br>
<vhost><br>
gentoo-mobile conf # cat nginx.conf<br>
server {<br>
  listen 80;<br>
  server_name <a href="http://python.silviosiefke.de" target="_blank">python.silviosiefke.de</a>;<br>
  root /var/www/<a href="http://python.silviosiefke.de/src/silviosiefke" target="_blank">python.silviosiefke.de/src/silviosiefke</a>;<br>
  access_log /var/www/<a href="http://python.silviosiefke.de/logs/access.log" target="_blank">python.silviosiefke.de/logs/access.log</a>;<br>
  error_log /var/www/<a href="http://python.silviosiefke.de/logs/error.log" target="_blank">python.silviosiefke.de/logs/error.log</a>;<br>
<br>
  location / {<br>
    include /etc/nginx/configuration/uwsgi_params;<br>
    uwsgi_pass unix:///tmp/python.silviosiefke.de.sock;<br>
  }<br>
}<br>
<br>
<uwsgi><br>
gentoo-mobile conf # cat uwsgi.ini<br>
[uwsgi]<br>
# variables<br>
projectname = silviosiefke<br>
projectdomain = <a href="http://python.silviosiefke.de" target="_blank">python.silviosiefke.de</a><br>
base = /var/www/<a href="http://python.silviosiefke.de" target="_blank">python.silviosiefke.de</a><br>
# config<br>
protocol = uwsgi<br>
venv = /var/www/<a href="http://python.silviosiefke.de/venv" target="_blank">python.silviosiefke.de/venv</a><br>
pythonpath = /var/www/<a href="http://python.silviosiefke.de/src/silviosiefke" target="_blank">python.silviosiefke.de/src/silviosiefke</a><br>
module = %(projectname).wsgi<br>
socket = /tmp/python.silviosiefke.de.sock<br>
logto = /var/www/<a href="http://python.silviosiefke.de/logs/uwsgi.log" target="_blank">python.silviosiefke.de/logs/uwsgi.log</a><br>
<br>
<log><br>
2013/01/21 18:50:17 [crit] 4539#0: *1 connect() to<br>
unix:///tmp/python.silviosiefke.de.sock failed (2: No such file or directory)<br>
while connecting to upstream, client: 192.168.2.20,<br>
server: <a href="http://python.silviosiefke.de" target="_blank">python.silviosiefke.de</a>, request: "GET /favicon.ico HTTP/1.1",<br>
upstream: "uwsgi://unix:///tmp/python.silviosiefke.de.sock:",<br>
: "<a href="http://python.silviosiefke.de" target="_blank">python.silviosiefke.de</a>"<br>
<br>
The socket is not present in /tmp. Whereis the mistake?<br>
<br>
Is there no way to make the Vhost configuration so that it does not<br>
matter what the user is in? PHP, Perl or Python?<br>
<br>
<br>
Really Thank you for help. Greetings<br>
Silvio<br>
<br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org" target="_blank">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</blockquote></div><br></div></div>