From 3e1b6d95b6afd298ce05d5a68ea6debcd57efb2a Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Thu, 27 Mar 2025 15:02:25 +0100 Subject: [PATCH] fix url in robots.txt --- hub/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hub/urls.py b/hub/urls.py index 1e2f99f..d7eca5f 100644 --- a/hub/urls.py +++ b/hub/urls.py @@ -22,7 +22,7 @@ from .sitemaps import ( def robots_txt(request): content = """User-agent: * Allow: / -Sitemap: https://serva.la/sitemap.xml +Sitemap: https://servala.com/sitemap.xml """ return HttpResponse(content, content_type="text/plain")