A simple static HTML page to redirect users to the iOS App Store or Google Play Store based on their device.
Update the URLs in index.html:
iosUrl: URL to the iOS App Store.androidUrl: URL to the Google Play Store.
This site is intended to be hosted on an Nginx server.
server {
listen 80;
server_name download.toads.example.com;
root /path/to/toads-redirect;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}