From b20c46a61537191daeda2f1e5608c4ea946380a4 Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Thu, 1 Feb 2024 15:49:46 +0100 Subject: [PATCH] chore: unpublish README files in content dir Adds hugo build options that prevents these READMEs from being published. Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- content/engine/reference/commandline/README.md | 5 ++++- content/engine/security/https/README.md | 7 +++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/content/engine/reference/commandline/README.md b/content/engine/reference/commandline/README.md index 8ff40651f4..aaa2ff5481 100644 --- a/content/engine/reference/commandline/README.md +++ b/content/engine/reference/commandline/README.md @@ -1,5 +1,8 @@ --- -{} +_build: + list: never + publishResources: false + render: never --- # About these files diff --git a/content/engine/security/https/README.md b/content/engine/security/https/README.md index bd7cb5e5b7..85562d0835 100644 --- a/content/engine/security/https/README.md +++ b/content/engine/security/https/README.md @@ -1,5 +1,8 @@ --- -published: false +_build: + list: never + publishResources: false + render: never --- This is an initial attempt to make it easier to test the TLS (HTTPS) examples in the protect-access.md @@ -26,4 +29,4 @@ Start another terminal: root@boot2docker:/# cd docker/docs/articles/https root@boot2docker:/# make client -The last connects first with `--tls` and then with `--tlsverify`, both should succeed. \ No newline at end of file +The last connects first with `--tls` and then with `--tlsverify`, both should succeed.