Block pages indexing

This commit is contained in:
2022-04-23 20:41:31 +02:00
parent 48112dfed7
commit 234e77d08a
5 changed files with 17 additions and 4 deletions

View File

@ -104,6 +104,7 @@ async fn main() -> std::io::Result<()> {
// main route
.route("/", web::get()
.to(|| async { HttpResponse::Found().append_header(("Location", "/settings")).finish() }))
.route("/robots.txt", web::get().to(assets_controller::robots_txt))
// health route
.service(health)