Skip to content

Latest commit

 

History

9 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Toads Redirect Site

A simple static HTML page to redirect users to the iOS App Store or Google Play Store based on their device.

Configuration

Update the URLs in index.html:

  • iosUrl: URL to the iOS App Store.
  • androidUrl: URL to the Google Play Store.

Deployment

This site is intended to be hosted on an Nginx server.

Nginx Example Config

server {
    listen 80;
    server_name download.toads.example.com;

    root /path/to/toads-redirect;
    index index.html;

    location / {
        try_files $uri $uri/ /index.html;
    }
}

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages