blob: cea822a8057481aa050dc6146a975e576247a780 (
plain)
1
2
3
4
5
6
7
|
location = /robots.txt {
return 200 "User-agent: *
{{if .RobotsDisallow}}{{range .RobotsDisallow}}Disallow: {{.}}
{{end}}{{end}}
{{if .RobotsAllow}}{{range .RobotsAllow}}Allow: {{.}}
{{end}}{{end}}";
}
|