Skip to content

Instantly share code, notes, and snippets.

@v-thomp4
Created April 13, 2017 03:15
Show Gist options
  • Save v-thomp4/951b333a37ee2adb0d3ac557bd75aba4 to your computer and use it in GitHub Desktop.
Save v-thomp4/951b333a37ee2adb0d3ac557bd75aba4 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