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
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no"> <meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="robots" content="noindex,nofollow">
<title><%:Error%></title> <title><%:Error%></title>
......
...@@ -125,6 +125,7 @@ ...@@ -125,6 +125,7 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no"> <meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="robots" content="noindex,nofollow">
<title><%| nodeinfo.hostname %> - <%:Status%></title> <title><%| nodeinfo.hostname %> - <%:Status%></title>
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
<meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0"> <meta http-equiv="Expires" content="0">
<meta http-equiv="refresh" content="0; URL=/cgi-bin/status"> <meta http-equiv="refresh" content="0; URL=/cgi-bin/status">
<meta name="robots" content="noindex,nofollow">
</head> </head>
<body> <body>
</body> </body>
......
User-agent: *
Disallow: /
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment