Created
April 13, 2017 03:15
-
-
Save v-thomp4/951b333a37ee2adb0d3ac557bd75aba4 to your computer and use it in GitHub Desktop.
nginx universal links apple-app-site-association
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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