Here is my nginx configuration
server {
root /home/ubuntu/www
...
location = /apple-app-site-association {
default_type 'application/json';
}
location = /.well-known/apple-app-site-association {
default_type 'application/json';
}
...
}
and the curl output is
› curl -I https://example.com/.well-known/apple-app-site-association
HTTP/2 200
content-type: application/json
vary: Accept-Encoding
strict-transport-security: max-age=31536000
accept-ranges: bytes
However apple is giving me this, any idea?