diff --git a/backend/scripts/sync_all_zones.py b/backend/scripts/sync_all_zones.py index 986b700..1ae9165 100644 --- a/backend/scripts/sync_all_zones.py +++ b/backend/scripts/sync_all_zones.py @@ -44,7 +44,11 @@ LOG_FILE = Path("/home/user/logs/zone_sync.log") COMPRESS_DOMAIN_LISTS = True # CZDS TLDs we have access to -CZDS_TLDS = ["app", "dev", "info", "online", "org", "xyz"] +# NOTE: .org and .xyz are temporarily disabled - too large for 2GB RAM server +# .org = 10M+ domains (~500MB RAM), .xyz = 8M+ domains (~400MB RAM) +# Enable when server has more RAM or we implement streaming to SQLite +CZDS_TLDS = ["app", "dev", "info", "online"] # Small/medium TLDs only +CZDS_TLDS_DISABLED = ["org", "xyz"] # Too large for current server # Switch.ch AXFR config SWITCH_CONFIG = { diff --git a/frontend/src/app/terminal/yield/page.tsx b/frontend/src/app/terminal/yield/page.tsx index 3001ec4..54490e5 100644 --- a/frontend/src/app/terminal/yield/page.tsx +++ b/frontend/src/app/terminal/yield/page.tsx @@ -466,6 +466,21 @@ export default function YieldPage() { + {/* FEATURE IN DEVELOPMENT BANNER */} +
+
+ +
+

+ Feature in Development Coming Soon +

+

+ We're building an automated yield system for your parked domains. Soon you'll be able to monetize idle domains with intelligent traffic routing. Stay tuned for updates! +

+
+
+
+ {/* CONTENT */}
{loading ? (