Update to prevent caching and crawling status
This commit is contained in:
4
app.js
4
app.js
@@ -198,6 +198,10 @@ app.get("/500", function (req, res) {
|
||||
//get status
|
||||
app.get("/status", function (req, res, next) {
|
||||
realtime.getStatus(function (data) {
|
||||
res.set({
|
||||
'Cache-Control': 'private', // only cache by client
|
||||
'X-Robots-Tag': 'noindex, nofollow' // prevent crawling
|
||||
});
|
||||
res.send(data);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user