I have a simple html website on Github pages for which I want to include the apple-required file apple-app-site-association to verified my domain, such file has no extension, but the content type has to be application/json.
Here's what's inside the file:
{
"webcredentials": {
"apps": ["YOUR_TEAM_ID.BUNDLE_IDENTIFIER.app"]
}
}
Here's the path:
https://<<mydomain>>/.well-known/apple-app-site-association
After validating the file I see:
Normally I would do this in nginx, but since the website is hosted using Github pages and has no proxy associated to it, how can I do this?
pd: I'm also using Cloudflare, I don't know if there is an option for this using this service.
Thank you


