From 528309d1d82bcaae1fbb3966c74361e7d02df764 Mon Sep 17 00:00:00 2001 From: JuanDMeGon Date: Tue, 20 Aug 2019 22:11:32 -0500 Subject: [PATCH 1/2] Adding meta for disavowing robots Adding this meta tag may disavow regular indexing robots (google, yahoo, bing, etc.), to index the contents inside Telescope URLs. Take into account that this is not a barrier to get access to the Telescope components, but at least may avoid those sensitive sections to get index by mistake (there are some indexed already). Additionally, adding this to robots.txt may disavow robots for indexing, but will expose your Telescope URL to the public so you may want to avoid this and using this meta tag instead. --- resources/views/layout.blade.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/views/layout.blade.php b/resources/views/layout.blade.php index 55cb460ba..34ac2b7e0 100644 --- a/resources/views/layout.blade.php +++ b/resources/views/layout.blade.php @@ -6,6 +6,9 @@ + + + Telescope{{ config('app.name') ? ' - ' . config('app.name') : '' }} From 76c3022e38769d9684c1d35231d74a4bba39e462 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 21 Aug 2019 07:44:25 -0500 Subject: [PATCH 2/2] Update layout.blade.php --- resources/views/layout.blade.php | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/views/layout.blade.php b/resources/views/layout.blade.php index 34ac2b7e0..f2d3e9e65 100644 --- a/resources/views/layout.blade.php +++ b/resources/views/layout.blade.php @@ -7,7 +7,6 @@ - Telescope{{ config('app.name') ? ' - ' . config('app.name') : '' }}