From b5d410188803c0a761f5a79ad3cd6f7f9ed90c96 Mon Sep 17 00:00:00 2001 From: Nicolas Bally Date: Thu, 11 Apr 2013 17:36:45 +0200 Subject: [PATCH] nginx - --- config/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/nginx.conf b/config/nginx.conf index 0bfc80d..ea3d24b 100644 --- a/config/nginx.conf +++ b/config/nginx.conf @@ -5,14 +5,14 @@ upstream nb_app_unicorn { server { listen 80; server_name nicolasbally.com; - root /home/web/auclair_app/current/public; + root /home/web/nb_app/current/public; try_files $uri/index.html $uri @unicorn; location @unicorn { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_redirect off; - proxy_pass http://auclair_app_unicorn; + proxy_pass http://nb_app_unicorn; } error_page 500 502 503 504 /500.html;