Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/remove robots.txt and sitemap.xml #74

Open
lgeiger opened this issue Oct 22, 2018 · 1 comment
Open

Fix/remove robots.txt and sitemap.xml #74

lgeiger opened this issue Oct 22, 2018 · 1 comment
Labels
feature: gardening Things that make the site easier to maintain and monitor

Comments

@lgeiger
Copy link
Member

lgeiger commented Oct 22, 2018

Our server currently serves robots.txt and sitemap.xml.

nteract.io/server.js

Lines 10 to 20 in 48f98e0

if (!dev) {
/**
* Static Files
*/
server.get('/robots.txt', (req, res) => {
return res.sendFile('/static/robots.txt');
});
server.get('/sitemap.xml', (req, res) => {
return res.sendFile('/static/sitemap.xm');
});
}

Both files aren't generated at the moment. We should either remove this behavior or correctly generate them.

@rgbkrk
Copy link
Member

rgbkrk commented Oct 26, 2018

sitemap.xm - well there's a typo

We could create robots.txt. I like serving humans.txt too.

@willingc willingc added the feature: gardening Things that make the site easier to maintain and monitor label Dec 13, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature: gardening Things that make the site easier to maintain and monitor
Projects
None yet
Development

No branches or pull requests

3 participants