1
0
Fork 0
mirror of https://github.com/perlbot/perlbuut-pastebin synced 2025-06-07 14:17:26 -04:00

Add robots.txt to disallow all

This commit is contained in:
Ryan Voots 2016-06-26 13:47:39 -04:00
parent e97952f536
commit 30542a13db

8
app.pl
View file

@ -121,5 +121,13 @@ post '/eval' => sub {
$c->render(json => {evalout => $output});
};
get '/robots.txt' => sub {
my ($c) = @_;
$c->render(text => qq{User-agent: *
Disallow: /});
};
app->start;