From 1c2e665e271862a165279c3095a0cd2fe1c9b14d Mon Sep 17 00:00:00 2001 From: Arya Kiran Date: Mon, 3 Apr 2023 19:41:40 +0530 Subject: [PATCH] fix nav --- docs/setup_nginx.md | 6 +++--- mkdocs.yml | 8 ++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/docs/setup_nginx.md b/docs/setup_nginx.md index 199830d..edb7de6 100644 --- a/docs/setup_nginx.md +++ b/docs/setup_nginx.md @@ -1,10 +1,10 @@ -# Setting up NginX for GotHub +# Setting up NGINX for GotHub !!! note - NginX does not support automatic certificate generation. You need to use `certbot` to create and maintain the certificates but that is out of scope of this tutorial. + NGINX does not support automatic certificate generation. You need to use `certbot` to create and maintain the certificates but that is out of scope of this tutorial. -After installing NginX, create /etc/nginx/conf.d/gothub.conf with the following contents +After installing NGINX, create /etc/nginx/conf.d/gothub.conf with the following contents ```nginx server { diff --git a/mkdocs.yml b/mkdocs.yml index 128128f..79d2282 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -20,3 +20,11 @@ theme: markdown_extensions: - admonition - attr_list + +nav: + - index.md + - environment_variables.md + - setup_docker.md + - setup_manual.md + - setup_caddy.md + - setup_nginx.md