浏览代码

Changed gunicorn path to since that appears to be standard for Ubuntu now

Jeremy Stretch 9 年之前
父节点
当前提交
19a302774a
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      docs/getting-started.md

+ 2 - 2
docs/getting-started.md

@@ -259,10 +259,10 @@ Restart the nginx service to use the new configuration.
 
 
 ## gunicorn 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'
 pythonpath = '/opt/netbox/netbox'
 bind = '127.0.0.1:8001'
 bind = '127.0.0.1:8001'
 workers = 3
 workers = 3