Fix proxy_pass line in nginx+gunicorn example.
The example was missing the protocol part of the backend server URL
('http://'). This causes nginx to complain of a "malformed URL".
This commit is contained in:
@@ -490,7 +490,7 @@ differ too much. As we can't use ``uwsgi_pass`` with gunicorn, the nginx configu
|
|||||||
proxy_set_header X-Scheme $scheme;
|
proxy_set_header X-Scheme $scheme;
|
||||||
proxy_connect_timeout 10;
|
proxy_connect_timeout 10;
|
||||||
proxy_read_timeout 10;
|
proxy_read_timeout 10;
|
||||||
proxy_pass 127.0.0.1:9090;
|
proxy_pass http://127.0.0.1:9090;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user