From f68e4952c96a6d307d1f4ccebd3a0b7bea896f17 Mon Sep 17 00:00:00 2001 From: Aeron R <99763-bigugly@users.noreply.framagit.org> Date: Thu, 8 Jul 2021 16:02:57 +0000 Subject: [PATCH] Update nginx.md --- docs/install/nginx.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/install/nginx.md b/docs/install/nginx.md index 862b386d..61f38c60 100644 --- a/docs/install/nginx.md +++ b/docs/install/nginx.md @@ -13,6 +13,9 @@ Note that this does not include a cache configuration and that gancio does not use a cache control at all, if you can help with this task you're welcome. +- __You should be in the correct directory__ +`/etc/nginx/sites-available` + ```nginx server { listen 80; @@ -74,3 +77,8 @@ server { } ``` + +- __Following this, you should create a link to the file in sites-enabled:__ +```bash +ln -s /etc/nginx/sites-available/ /etc/nginx/sites-enabled/ +```