File size: 460 Bytes
c483669 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from django.http import HttpResponse
class CSPMiddleware:
def __init__(self, get_response):
self.get_response = get_response
def __call__(self, request):
response = self.get_response(request)
response["Content-Security-Policy"] = "frame-ancestors 'self' https://*.huggingface.com https://*.teddysc.me;"
response["X-Frame-Options"] = "ALLOW-FROM https://*.huggingface.com https://*.teddysc.me"
return response
|