FixVibe

// docs / domains

Domains

Domain भनेको तपाईंको स्वामित्वमा रहेको verified hostname हो। एक पटक verify गरेपछि त्यस hostname मा active probes, scheduled re-scans, र live threat monitoring खुल्छ।

Domain verify गर्ने

Dashboard → Domains मा hostname add गर्नुहोस्। दुई verification methods मध्ये एक छान्नुहोस्:

  • DNS TXT — हामीले generate गरेको token सहित _fixvibe.<hostname> मा record add गर्नुहोस्। हामी यसलाई तपाईंको server बाट होइन, हाम्रो server बाट re-resolve गर्छौँ, त्यसैले SPF / DMARC settings ले बाधा गर्दैन। सामान्य propagation: 1-5 मिनेट; हामी 10 मिनेटसम्म प्रत्येक 30 सेकेन्डमा re-check गर्छौँ।
  • HTTP file — host a small text file at /.well-known/fixvibe-verification.txt with the token. FixVibe checks it over HTTPS before enabling domain-gated features.

Verifications लाई domain-reverify cron ले दैनिक re-check गर्छ। पहिले verified domain ले token resolve गर्न छोड्यो भने (जस्तै तपाईंले DNS record हटाउनुभयो), verification revoked हुन्छ र त्यसविरुद्ध active scans तपाईंले फेरि add नगरेसम्म verify_required मा झर्छन्।

Scheduled re-scans Pro+

The Pro plan can re-scan a verified domain at ≥3h cadence; the Unlimited plan at ≥6h. Open Dashboard → Domains → Schedule, enable the toggle, pick a cadence:

  • 3 hours — available on Pro
  • 6h, 12h, daily, every 2 days, weekly — available on Pro and Unlimited

When a scheduled run is due, FixVibe queues a fresh scan for the verified domain and records the run. The scan inherits your domain authorization until you disable the schedule or revoke active authorization.

Completion मा scan-completed email scheduled_scan_email preference प्रयोग गरेर जान्छ (manage at Account → Settings)।

Live threat detection Unlimited+

Unlimited योजनाले तालिकाबद्ध स्क्यानहरू बीच प्रत्येक प्रमाणित डोमेनलाई तीन संकेतका लागि स्वतः निगरानी गर्छ:

  • Certificate transparency — हरेक 30 मिनेटमा हामी तपाईंको hostname वा कुनै subdomain भएको new certs का लागि crt.sh query गर्छौँ। New certs ले new_certificate alert fire गर्छ।
  • DNS diff — हरेक 30 मिनेटमा हामी A, AAAA, MX, TXT, NS, CNAME resolve गर्छौँ र last snapshot सँग compare गर्छौँ। Changes ले dns_change alert fire गर्छ।
  • Threat-intel — हरेक घण्टा हामी apex hostname का listings का लागि Spamhaus DBL र URLhaus check गर्छौँ। Listings ले threat_intel_listing alert fire गर्छ।

View and dismiss alerts at Dashboard → Domains → [domain] → Monitor. Email notifications follow the threat_alert_email preference.

Snapshot retention

Monitor snapshots 7 दिनपछि auto-prune हुन्छन्, तर प्रति (domain, signal-type) pair को most recent baseline बाहेक — त्यो उमेर जे भए पनि रहन्छ ताकि next diff सही होस्। Dismissed alerts 90 दिनपछि purge हुन्छन्।

API वा MCP बाट trigger गर्नुहोस्

Domain management remains dashboard-only for launch. After a domain is verified and explicitly authorized, REST API and MCP can start scans against it according to your plan:

curl
curl -X POST https://fixvibe.app/api/v1/scans \
  -H "Authorization: Bearer fxv_..." \
  -H "content-type: application/json" \
  -d '{"target":"https://example.com"}'
Domains — Docs · FixVibe