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
| #!/bin/bash | |
| # Cloudflare Dynamic DNS Updater with Proxy | |
| # Creates and updates DNS records to point to current public IP | |
| # Handles wildcard, root domain, and specific subdomains | |
| # Configuration | |
| CLOUDFLARE_API_TOKEN="API_TOKEN" | |
| ZONE_ID="ZONE_ID_TOKEN" | |
| DOMAIN="domaingoeshere.com" |