Add robots.txt file

This commit is contained in:
mahanstreamer 2021-09-05 18:34:40 -04:00 committed by GitHub
parent 6091f07d20
commit c1001f602a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,7 +28,20 @@ server.use(express.json());
server.use(express.urlencoded({ extended: false }));
server.use("/static", express.static(path.resolve("./dist")));
const robotstxt =
`User-Agent: *
Disallow: /login
Disallow: /settings
Disallow: /create_community
Disallow: /create_post
Disallow: /inbox
Disallow: /search/
`;
// server.use(cookieParser());
server.get("/robots.txt", async (req, res) => {
res.setHeader("content-type","text/plain; charset=utf-8")
res.send(robotstxt)
});
server.get("/*", async (req, res) => {
const activeRoute = routes.find(route => matchPath(req.path, route)) || {};