The SADDL01 is our internal please ignore that - Kindly investigate the below URLS and let us know why the Apple CDN is not caching the AASA file for our domain (app.ooredoo.om).
To verify our configuration, we tested the AASA file by executing the following curl requests, and the responses appear to be as expected:
Scenario 1: HTTP GET request to our domain's AASA file.
curl -i https://app.ooredoo.om/.well-known/apple-app-site-association
HTTP/1.1 200
Server: nginx
Date: Sun, 12 Jul 2026 05:06:10 GMT
Content-Type: application/json
Content-Length: 434
Connection: keep-alive
X-Content-Type-Options: nosniff
X-Frame-Options: DENY
X-XSS-Protection: 1; mode=block
Strict-Transport-Security: max-age=63072000; includeSubDomains
Referrer-Policy: no-referrer
Content-Security-Policy: default-src 'self'
Permissions-Policy: geolocation=(), camera=(), microphone=()
{
"applinks": {
"apps": [
],
"details": [
{
"appIDs": [
"ZU837R8FZZ.om.nawras.mynawras",
"E2T3WF7746.com.cts.selfcare.ooredoo",
"C4CVJ2YLUC.com.testNawras"
],
"components": [
{
"/": "/og/*",
"exclude": true
},
{
"/": "/*"
}
]
}
]
}
}
Scenario 2: HTTP HEAD request to our domain's AASA file.
curl -I https://app.ooredoo.om/.well-known/apple-app-site-association
HTTP/1.1 200
Server: nginx
Date: Sun, 12 Jul 2026 05:29:51 GMT
Content-Type: application/json
Content-Length: 434
Connection: keep-alive
X-Content-Type-Options: nosniff
X-Frame-Options: DENY
X-XSS-Protection: 1; mode=block
Strict-Transport-Security: max-age=63072000; includeSubDomains
Referrer-Policy: no-referrer
Content-Security-Policy: default-src 'self'
Permissions-Policy: geolocation=(), camera=(), microphone=()
Set-Cookie: cookiesession1=678B28D2C0D04C8F3D1D3EBEA3352FAF;Expires=Mon, 12 Jul 2027 05:29:51 GMT;Path=/;HttpOnly
Scenario 3: HTTP request to our domain's AASA file using verbose (-v) mode.
curl -v https://app.ooredoo.om/.well-known/apple-app-site-association
-
Host app.ooredoo.om:443 was resolved.
-
IPv6: (none)
-
IPv4: 10.125.120.101
-
Trying 10.125.120.101:443...
-
schannel: disabled automatic use of client certificate
-
ALPN: curl offers http/1.1
-
ALPN: server accepted http/1.1
-
Established connection to app.ooredoo.om (10.125.120.101 port 443) from 127.0.0.1 port 59690
-
using HTTP/1.x
GET /.well-known/apple-app-site-association HTTP/1.1
Host: app.ooredoo.om
User-Agent: curl/8.19.0
Accept: /
- Request completely sent off
< HTTP/1.1 200
< Server: nginx
< Date: Sun, 12 Jul 2026 12:12:46 GMT
< Content-Type: application/json
< Content-Length: 434
< Connection: keep-alive
< X-Content-Type-Options: nosniff
< X-Frame-Options: DENY
< X-XSS-Protection: 1; mode=block
< Strict-Transport-Security: max-age=63072000; includeSubDomains
< Referrer-Policy: no-referrer
< Content-Security-Policy: default-src 'self'
< Permissions-Policy: geolocation=(), camera=(), microphone=()
< Set-Cookie: cookiesession1=678B28D2A6B4CEA0CA982D821C182EC7;Expires=Mon, 12 Jul 2027 12:12:46 GMT;Path=/;HttpOnly
<
{
"applinks": {
"apps": [
],
"details": [
{
"appIDs": [
"ZU837R8FZZ.om.nawras.mynawras",
"E2T3WF7746.com.cts.selfcare.ooredoo",
"C4CVJ2YLUC.com.testNawras"
],
"components": [
{
"/": "/og/*",
"exclude": true
},
{
"/": "/*"
}
]
}
]
}
}* Connection #0 to host app.ooredoo.om:443 left intact
Please review the issue and advise why the Apple CDN is not caching the AASA file despite the above request responses.