Guest User

Untitled

a guest
May 12th, 2012
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. Nginx: Multiple Django Projects with project root?
  2. location /project1 {
  3. include uwsgi_params;
  4. uwsgi_pass localhost:3032;
  5. }
  6.  
  7. location /project1 {
  8.  
  9. include uwsgi_params;
  10. uwsgi_param SCRIPT_NAME /project1;
  11. uwsgi_modifier1 30;
  12. uwsgi_pass localhost:3032;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment