Fixing bad cherry pick
This commit is contained in:
parent
f78e9d47d1
commit
f679392c61
|
@ -106,12 +106,8 @@ You can make some adjustments to get a better user experience::
|
|||
}
|
||||
|
||||
location / {
|
||||
<<<<<<< HEAD
|
||||
root /apps/lemur/lemur/static/dist;
|
||||
=======
|
||||
root /www/lemur/lemur/static/dist;
|
||||
include mime.types;
|
||||
>>>>>>> b978435... Merge pull request #21 from kevgliss/buildfixes
|
||||
index index.html;
|
||||
}
|
||||
|
||||
|
@ -176,12 +172,8 @@ sensitive nature of Lemur and what it controls makes this essential. This is a s
|
|||
}
|
||||
|
||||
location / {
|
||||
<<<<<<< HEAD
|
||||
root /apps/lemur/lemur/static/dist;
|
||||
=======
|
||||
root /www/lemur/lemur/static/dist;
|
||||
include mime.types;
|
||||
>>>>>>> b978435... Merge pull request #21 from kevgliss/buildfixes
|
||||
index index.html;
|
||||
}
|
||||
|
||||
|
|
|
@ -148,7 +148,6 @@ Proxying with Nginx
|
|||
You'll use the builtin HttpProxyModule within Nginx to handle proxying::
|
||||
|
||||
location / {
|
||||
<<<<<<< HEAD
|
||||
proxy_pass http://localhost:5000;
|
||||
proxy_redirect off;
|
||||
|
||||
|
@ -156,11 +155,12 @@ 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;
|
||||
=======
|
||||
}
|
||||
|
||||
location / {
|
||||
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.
|
||||
|
|
Loading…
Reference in New Issue