From 3a18d1df8c2a8d94e152db15dc697fb38aa96753 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markku=20Leini=C3=B6?= Date: Sat, 14 Dec 2019 21:14:48 +0200 Subject: [PATCH] Fix gunicorn.conf remains to gunicorn.py --- .gitignore | 2 +- docs/installation/3-http-daemon.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2183b50a3..66a8b13e8 100644 --- a/.gitignore +++ b/.gitignore @@ -12,7 +12,7 @@ fabfile.py *.swp gunicorn_config.py -gunicorn.conf +gunicorn.py netbox.log netbox.pid .DS_Store diff --git a/docs/installation/3-http-daemon.md b/docs/installation/3-http-daemon.md index c4efa51de..4ca566aa3 100644 --- a/docs/installation/3-http-daemon.md +++ b/docs/installation/3-http-daemon.md @@ -107,7 +107,7 @@ Install gunicorn: # pip3 install gunicorn ``` -Copy `contrib/gunicorn.conf` to `/opt/netbox/gunicorn.conf`. We make a copy of this file to ensure that any changes to it do not get overwritten by a future upgrade. +Copy `contrib/gunicorn.py` to `/opt/netbox/gunicorn.py`. We make a copy of this file to ensure that any changes to it do not get overwritten by a future upgrade. ```no-highlight # cp contrib/gunicorn.py /opt/netbox/gunicorn.py