diff --git a/app/config/urls.py b/app/config/urls.py index daeb706..f241e4d 100644 --- a/app/config/urls.py +++ b/app/config/urls.py @@ -1,3 +1,4 @@ +from django.shortcuts import redirect from apps.homeownerassociation.views import HomeOwnerAssociationView from apps.address.views import AddressViewset from apps.cases.views import CaseViewSet @@ -40,4 +41,8 @@ def ok(request): SpectacularSwaggerView.as_view(url_name="schema"), name="swagger-ui", ), + path( + ".well-known/security.txt", + lambda: redirect("https://www.amsterdam.nl/security.txt"), + ), ]