owlcode.tech/lib/OwlcodeTech/Controller/Robots.pm

15 lines
318 B
Perl
Raw Normal View History

package OwlcodeTech::Controller::Robots;
2023-05-03 01:02:51 +02:00
use Mojo::Base 'Mojolicious::Controller', '-signatures';
sub robots($self) {
my $robots_txt = <<"EOF";
Sitemap: @{[$self->config('base_url')]}/sitemap.xml
User-Agent: *
Disallow: /stats
Disallow: /stats/*
EOF
$self->render(text => $robots_txt, format => 'txt');
}
1;