Let requests stream directly into the storage layer without pooling up on the backend.
This commit is contained in:
parent
d52d913276
commit
5f8d7662d1
4 changed files with 9 additions and 5 deletions
|
@ -1,11 +1,9 @@
|
||||||
to prepare a new host:
|
to prepare a new host:
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo apt-get install software-properties-common
|
|
||||||
sudo apt-add-repository -y ppa:nginx/stable
|
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y git python-virtualenv python-dev phantomjs libjpeg8 libjpeg62-dev libfreetype6 libfreetype6-dev libevent-dev
|
sudo apt-get install -y git python-virtualenv python-dev phantomjs libjpeg8 libjpeg62-dev libfreetype6 libfreetype6-dev libevent-dev gdebi-core
|
||||||
sudo apt-get install -y nginx-full
|
sudo gdebi --n binary_dependencies/*.deb
|
||||||
```
|
```
|
||||||
|
|
||||||
check out the code:
|
check out the code:
|
||||||
|
@ -20,7 +18,7 @@ pip install -r requirements.txt
|
||||||
running:
|
running:
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo mkdir -p /mnt/nginx/ && sudo nginx -c `pwd`/nginx.conf
|
sudo mkdir -p /mnt/nginx/ && sudo /usr/local/nginx/sbin/nginx -c `pwd`/nginx.conf
|
||||||
STACK=prod gunicorn -c gunicorn_config.py application:application
|
STACK=prod gunicorn -c gunicorn_config.py application:application
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
BIN
binary_depdencies/nginx_1.4.2-nobuffer-1_amd64.deb
Normal file
BIN
binary_depdencies/nginx_1.4.2-nobuffer-1_amd64.deb
Normal file
Binary file not shown.
|
@ -72,6 +72,9 @@ http {
|
||||||
proxy_redirect off;
|
proxy_redirect off;
|
||||||
proxy_buffering off;
|
proxy_buffering off;
|
||||||
|
|
||||||
|
proxy_request_buffering off;
|
||||||
|
proxy_set_header Transfer-Encoding $http_transfer_encoding;
|
||||||
|
|
||||||
proxy_pass http://app_server;
|
proxy_pass http://app_server;
|
||||||
proxy_read_timeout 2000;
|
proxy_read_timeout 2000;
|
||||||
proxy_temp_path /mnt/nginx/proxy_temp 1 2;
|
proxy_temp_path /mnt/nginx/proxy_temp 1 2;
|
||||||
|
|
|
@ -70,6 +70,9 @@ http {
|
||||||
proxy_redirect off;
|
proxy_redirect off;
|
||||||
proxy_buffering off;
|
proxy_buffering off;
|
||||||
|
|
||||||
|
proxy_request_buffering off;
|
||||||
|
proxy_set_header Transfer-Encoding $http_transfer_encoding;
|
||||||
|
|
||||||
proxy_pass http://app_server;
|
proxy_pass http://app_server;
|
||||||
proxy_read_timeout 2000;
|
proxy_read_timeout 2000;
|
||||||
proxy_temp_path /mnt/nginx/proxy_temp 1 2;
|
proxy_temp_path /mnt/nginx/proxy_temp 1 2;
|
||||||
|
|
Reference in a new issue