Skip to content

Instantly share code, notes, and snippets.

@vu3jej
Created January 30, 2026 00:48
Show Gist options
  • Select an option

  • Save vu3jej/1171395196301e5026c2160f36cda6f1 to your computer and use it in GitHub Desktop.

Select an option

Save vu3jej/1171395196301e5026c2160f36cda6f1 to your computer and use it in GitHub Desktop.
location ^~ /.well-known/ {
# Alias must point to the folder itself and end with a slash
alias /home/ubuntu/static_assets/.well-known/;
# Ensure browsers treat them as JSON
default_type application/json;
# Allow cross-origin (needed for some validators)
add_header Access-Control-Allow-Origin "*";
# Force JSON for the Apple file specifically
location ~ /apple-app-site-association$ {
default_type application/json;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment