#tower #ai #axum #tower-service

tower-no-ai

A tower Service and Layer to redirect all AI scraping bots

2 releases

0.1.1 Jul 4, 2024
0.1.0 Jun 30, 2024

#1132 in HTTP server

Download history 198/week @ 2024-06-27 135/week @ 2024-07-04 1/week @ 2024-07-11

80 downloads per month

MIT/Apache

7KB
129 lines

tower-no-ai

A very simple crate to extend tower with the ability to redirect all AI-scraper bot User-Agent headers to a user-defined URL.

This can be done with something like the following (with axum):

use tower_no_ai::NoAiLayer;
use axum::routing::{get, Router};

let route = Router::new()
	.route("/", get(hello_world))
	// route them to a hetzner 10GB speed test file
	.layer(NoAiLayer::new("https://fsn1-speed.hetzner.com/10GB.bin"));

As this is built on tower, it should work perfectly with all tower-based backends.

Contributions, bug reports, and suggestions are welcome.

Dual-Licensed MIT and Apache 2.0

Dependencies

~655KB
~10K SLoC