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;