mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-03 04:57:38 +03:00
Implement robots.txt
This commit is contained in:
parent
4dbb5367e7
commit
0340e834a6
1 changed files with 7 additions and 0 deletions
|
@ -15,6 +15,12 @@ async fn style() -> HttpResponse {
|
|||
HttpResponse::Ok().content_type("text/css").body(file)
|
||||
}
|
||||
|
||||
#[get("/robots.txt")]
|
||||
async fn robots() -> HttpResponse {
|
||||
let file = fs::read_to_string("static/robots.txt").expect("ERROR: Could not read robots.txt");
|
||||
HttpResponse::Ok().body(file)
|
||||
}
|
||||
|
||||
#[get("/favicon.ico")]
|
||||
async fn favicon() -> HttpResponse {
|
||||
HttpResponse::Ok().body("")
|
||||
|
@ -30,6 +36,7 @@ async fn main() -> std::io::Result<()> {
|
|||
// GENERAL SERVICES
|
||||
.service(style)
|
||||
.service(favicon)
|
||||
.service(robots)
|
||||
// POST SERVICES
|
||||
.service(post::short)
|
||||
.service(post::page)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue