Skip to content

Instantly share code, notes, and snippets.

@Teivaz
Created August 20, 2019 18:56
Show Gist options
  • Save Teivaz/d7aba3e6b59d5cb2cbf7ddaa262e2402 to your computer and use it in GitHub Desktop.
Save Teivaz/d7aba3e6b59d5cb2cbf7ddaa262e2402 to your computer and use it in GitHub Desktop.
Serve apple-app-site-association.json with nginx
location = /apple-app-site-association {
root /var/www/http; # Your location here
add_header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate";
try_files /apple-app-site-association.json =404;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment