You add a custom domain to your Firebase Hosting project and verify ownership. What is the expected behavior immediately after this setup?
Think about Firebase Hosting's automatic security features.
Firebase Hosting automatically provisions SSL certificates for custom domains, enabling HTTPS without manual steps.
To verify ownership of a custom domain in Firebase Hosting, which DNS record must you add to your domain's DNS settings?
Verification usually involves proving domain ownership via a special text entry.
Firebase requires a TXT record with a verification token to confirm domain ownership before enabling hosting.
You have configured multiple custom domains for a single Firebase Hosting site. How does Firebase route incoming requests?
Consider how web servers use the Host header to serve content.
Firebase Hosting uses the Host header in HTTP requests to serve the same content for all custom domains linked to the site.
After adding a custom domain to Firebase Hosting, which security feature is automatically enabled to protect your site?
Think about how Firebase secures traffic between browsers and servers.
Firebase Hosting automatically provisions SSL certificates via Let's Encrypt to enable HTTPS on custom domains.
You want to redirect all traffic from blog.example.com to www.example.com/blog. What is the best way to configure this in Firebase Hosting?
firebase.json
Consider how Firebase Hosting handles domain-based redirects in its configuration file.
Firebase Hosting supports domain-based redirects configured in firebase.json redirect rules specifying source domain and target URL.