From 044ccd2d470b266de437d6aa9cec99f928cb305b Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Thu, 10 Mar 2011 17:33:48 +0000 Subject: [PATCH] update the names in the nginx conf --- conf/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 783d3be..c4a9ad5 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -17,12 +17,12 @@ server { proxy_busy_buffers_size 32k; proxy_intercept_errors on; if (!-f $request_filename) { - proxy_pass http://fractals_backend; + proxy_pass http://budget_backend; break; } } } -upstream fractals_backend { +upstream budget_backend { server unix:/path/to/app/budget.gunicorn.sock; }