From 3be5fec5dbe1dc0965d1b091e34a4504e4272807 Mon Sep 17 00:00:00 2001 From: Bob Vandevliet Date: Wed, 26 Jun 2024 15:57:42 +0200 Subject: [PATCH] Prevent template parts to be indexed. --- .volumes/nginx/conf/conf.d/default.conf | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/.volumes/nginx/conf/conf.d/default.conf b/.volumes/nginx/conf/conf.d/default.conf index d26be5c..7ce585b 100644 --- a/.volumes/nginx/conf/conf.d/default.conf +++ b/.volumes/nginx/conf/conf.d/default.conf @@ -5,18 +5,21 @@ server { #access_log /var/log/nginx/host.access.log main; + root /usr/share/nginx/public; + location / { - root /usr/share/nginx/public; - index index.html; - ssi on; - try_files $uri $uri/ $uri.html =404; + index index.html; + try_files $uri $uri/ $uri.html =404; + ssi on; + } + + location /includes/ { + try_files $uri $uri/ $uri.html =404; + ssi on; + add_header X-Robots-Tag "noindex, nofollow"; } error_page 404 /404.html; - location = /404.html { - root /usr/share/nginx/public; - } - error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html;