Fixing filename to start server

The documentation has incorrect file name specified
to start the server for Gunicorn. This patch fixes it.

Closes-Bug: #1657990
Change-Id: I204a02433339ac3863b56a5bc89178fd2cc8296d
This commit is contained in:
sanjana 2017-02-13 03:44:28 +00:00
parent b5242f6ddc
commit 67182007cf
1 changed files with 2 additions and 2 deletions

View File

@ -44,14 +44,14 @@ Running the server in foreground mode with Gunicorn:
```sh
gunicorn -k eventlet --worker-connections=2000 --backlog=1000
--paste /etc/monasca/log-api.ini
--paste /etc/monasca/log-api-config.ini
```
Running the server as daemons with Gunicorn:
```sh
gunicorn -k eventlet --worker-connections=2000 --backlog=1000
--paste /etc/monasca/log-api.ini -D
--paste /etc/monasca/log-api-config.ini -D
```
### Start the Server -- for Apache