From 2d11e5c7cc8e79ab2661d3fe50dd7d165834115f Mon Sep 17 00:00:00 2001 From: ammgws Date: Sat, 8 Oct 2016 06:50:28 +0900 Subject: [PATCH] Fixed mistake in systemd section (#1363) example starts the wrong service name --- docs/source/deploy.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/deploy.rst b/docs/source/deploy.rst index 78b9423f..11e44e86 100644 --- a/docs/source/deploy.rst +++ b/docs/source/deploy.rst @@ -252,12 +252,12 @@ systemd: Next enable the services so they autostart at boot:: - systemctl enable nginx.service + systemctl enable gunicorn.service systemctl enable gunicorn.socket Either reboot, or start the services manually:: - systemctl start nginx.service + systemctl start gunicorn.service systemctl start gunicorn.socket