From 19a302774a601e27c7fcd107aa7388c06ce44d17 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 27 Jun 2016 13:21:38 -0400 Subject: [PATCH] Changed gunicorn path to since that appears to be standard for Ubuntu now --- docs/getting-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 1d657fbf3..8f2688aef 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -259,10 +259,10 @@ Restart the nginx service to use the new configuration. ## gunicorn Configuration -Save the following configuration file in the root netbox installation path (in this example, `/opt/netbox/`.) as `gunicorn_config.py`. Be sure to update the `pythonpath` variable if needed. +Save the following configuration file in the root netbox installation path (in this example, `/opt/netbox/`.) as `gunicorn_config.py`. Be sure to verify the location of the gunicorn executable (e.g. `which gunicorn`) and to update the `pythonpath` variable if needed. ``` -command = '/usr/local/bin/gunicorn' +command = '/usr/bin/gunicorn' pythonpath = '/opt/netbox/netbox' bind = '127.0.0.1:8001' workers = 3