mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-25 13:51:13 +00:00
Add robots.txt file
This commit is contained in:
parent
9704838669
commit
90a066cb2d
1 changed files with 13 additions and 0 deletions
|
@ -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)) || {};
|
||||
|
|
Loading…
Reference in a new issue