Commit ce0df10c authored by Yuanle Song's avatar Yuanle Song
Browse files

v0.5.9 add uwsgi_pass timeout configuration.

increase timeout from 60s to 300s.
parent 1ba3e887
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
(defproject python/lein-template "0.5.8"
(defproject python/lein-template "0.5.9"
  :description "lein template for a python project"
  :repositories [["snapshots"
                  {:url "http://devserv.game.yy.com/nexus/content/repositories/snapshots"
+2 −0
Original line number Diff line number Diff line
@@ -32,5 +32,7 @@ server {
    location / {
        include uwsgi_params;
        uwsgi_pass 127.0.0.1:8082;
        uwsgi_read_timeout 300;
        uwsgi_send_timeout 300;
    }
}
+2 −0
Original line number Diff line number Diff line
@@ -45,5 +45,7 @@ server {
    location / {
        include uwsgi_params;
        uwsgi_pass 127.0.0.1:8082;
        uwsgi_read_timeout 300;
        uwsgi_send_timeout 300;
    }
}