updating docs with new API endpoints and plugin information

This commit is contained in:
kevgliss
2015-07-30 22:54:59 -07:00
parent 11a6294162
commit d3b0822e14
28 changed files with 586 additions and 301 deletions

View File

@ -64,17 +64,6 @@ You will benefit from having:
You must create a Nginx configuration file for Lemur. On GNU/Linux, they usually
go into /etc/nginx/conf.d/. Name it lemur.conf.
The minimal configuration file to run the site is::
server {
listen 80;
server_name www.yourwebsite.com;
location / {
proxy_pass http://127.0.0.1:5000;
}
}
`proxy_pass` just passes the external request to the Python process.
The port much match the one used by the 0bin process of course.
@ -106,7 +95,7 @@ You can make some adjustments to get a better user experience::
}
location / {
root /www/lemur/lemur/static/dist;
root /path/to/lemur/static/dist;
include mime.types;
index index.html;
}
@ -172,7 +161,7 @@ sensitive nature of Lemur and what it controls makes this essential. This is a s
}
location / {
root /www/lemur/lemur/static/dist;
root /path/to/lemur/static/dist;
include mime.types;
index index.html;
}
@ -180,6 +169,8 @@ sensitive nature of Lemur and what it controls makes this essential. This is a s
}
.. Note:: Some paths will have to be adjusted based on where you have choose to install Lemur.
Apache
------