Skip to content
Snippets Groups Projects
Unverified Commit 63e016df authored by Rotzbua's avatar Rotzbua
Browse files

gluon-status-page: disallow crawler/robots to index

Disallow crawlers to crawl and index page.
Crawling causes  traffic and high load.
Indexation max cause unintended attention, e.g. spam, ..

Reference:
https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag
parent 895970a1
Branches
Tags
No related merge requests found
......@@ -6,6 +6,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="robots" content="noindex,nofollow">
<title><%:Error%></title>
......
......@@ -125,6 +125,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="robots" content="noindex,nofollow">
<title><%| nodeinfo.hostname %> - <%:Status%></title>
......
......@@ -5,6 +5,7 @@
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta http-equiv="refresh" content="0; URL=/cgi-bin/status">
<meta name="robots" content="noindex,nofollow">
</head>
<body>
</body>
......
User-agent: *
Disallow: /
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment