Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MihaelIsaev/4015acb7d9e3a937f4ad4c420c50d24f to your computer and use it in GitHub Desktop.
Save MihaelIsaev/4015acb7d9e3a937f4ad4c420c50d24f to your computer and use it in GitHub Desktop.
nginx universal links apple-app-site-association
location = /apple-app-site-association {
proxy_pass http://static.example.com/apple-app-site-association;
proxy_hide_header Content-Type;
add_header Content-Type "application/json";
}
or
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