Merge pull request #21 from kevgliss/buildfixes

Build Fixes
This commit is contained in:
kevgliss
2015-07-19 19:07:08 -07:00
parent 92a3c1a5a0
commit f78e9d47d1
7 changed files with 42 additions and 6 deletions

View File

@ -148,6 +148,7 @@ Proxying with Nginx
You'll use the builtin HttpProxyModule within Nginx to handle proxying::
location / {
<<<<<<< HEAD
proxy_pass http://localhost:5000;
proxy_redirect off;
@ -155,6 +156,11 @@ You'll use the builtin HttpProxyModule within Nginx to handle proxying::
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
=======
root /www/lemur/lemur/static/dist;
include mime.types;
index index.html;
>>>>>>> b978435... Merge pull request #21 from kevgliss/buildfixes
}
See :doc:`../production/index` for more details on using Nginx.