From 4772548aaa97f14e6212f65e2f7bec8d505bcfee Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 19 Nov 2025 07:11:45 +0000 Subject: [PATCH 1/2] Initial plan From ab76d3d13ccd9bd39e1acee4ecf9d9a12a9edc2e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 19 Nov 2025 07:14:54 +0000 Subject: [PATCH 2/2] Remove conflicting taimoorawan.com file and add DNS configuration guide Co-authored-by: DeepExtrema <175066046+DeepExtrema@users.noreply.github.com> --- DNS_SETUP.md | 57 +++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 11 ++++++++++ taimoorawan.com | 0 3 files changed, 68 insertions(+) create mode 100644 DNS_SETUP.md delete mode 100644 taimoorawan.com diff --git a/DNS_SETUP.md b/DNS_SETUP.md new file mode 100644 index 0000000..9448eeb --- /dev/null +++ b/DNS_SETUP.md @@ -0,0 +1,57 @@ +# DNS Configuration Guide for GitHub Pages + +This document explains how to configure DNS records for the custom domain `taimoorawan.dev` to work with GitHub Pages. + +## Current Configuration + +- **Custom Domain**: taimoorawan.dev (configured in CNAME file) +- **GitHub Pages URL**: https://deepextrema.github.io/Portfolio-Website/ + +## Required DNS Configuration + +To fix the "Domain does not resolve to the GitHub Pages server" error, you need to configure DNS records at your domain registrar. + +### For Apex Domain (taimoorawan.dev) + +Add the following **A records** at your DNS provider: + +``` +Type: A +Name: @ +Value: 185.199.108.153 + +Type: A +Name: @ +Value: 185.199.109.153 + +Type: A +Name: @ +Value: 185.199.110.153 + +Type: A +Name: @ +Value: 185.199.111.153 +``` + +### Optional: For www Subdomain + +If you also want www.taimoorawan.dev to work, add a CNAME record: + +``` +Type: CNAME +Name: www +Value: deepextrema.github.io +``` + +## Verification Steps + +1. Configure the DNS records at your domain registrar +2. Wait for DNS propagation (can take up to 48 hours, but usually much faster) +3. Verify DNS configuration using: `dig taimoorawan.dev +noall +answer` +4. Check GitHub Pages settings in repository settings +5. Ensure HTTPS is enabled in GitHub Pages settings (may take a few minutes after DNS propagates) + +## References + +- [GitHub Pages Custom Domain Documentation](https://docs.github.com/en/pages/configuring-a-custom-domain-for-your-github-pages-site) +- [Managing a custom domain for your GitHub Pages site](https://docs.github.com/en/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site) diff --git a/README.md b/README.md index ffa1765..fc9b40f 100644 --- a/README.md +++ b/README.md @@ -1 +1,12 @@ # MachineAlchemist + +Portfolio website for Taimoor Awan. + +## Live Site + +- **Custom Domain**: [taimoorawan.dev](https://taimoorawan.dev) +- **GitHub Pages**: [https://deepextrema.github.io/Portfolio-Website/](https://deepextrema.github.io/Portfolio-Website/) + +## Custom Domain Setup + +This site uses a custom domain with GitHub Pages. If you need to configure DNS settings, see [DNS_SETUP.md](DNS_SETUP.md) for detailed instructions. diff --git a/taimoorawan.com b/taimoorawan.com deleted file mode 100644 index e69de29..0000000