From eac0dccf859a205a7efd297c04199d9221aa9005 Mon Sep 17 00:00:00 2001 From: Gnof <131493877+gnof-the-shark@users.noreply.github.com> Date: Fri, 27 Feb 2026 18:11:50 -0500 Subject: [PATCH 1/9] Add JSON configuration for Gnof domain --- domains/gnof.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 domains/gnof.json diff --git a/domains/gnof.json b/domains/gnof.json new file mode 100644 index 00000000000..f030964c628 --- /dev/null +++ b/domains/gnof.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Gnof-the-shark", + "email": "christophewhite14@gmail.com" + }, + "record": { + "CNAME": "gnof-the-shark.github.io", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ] + } +} From 7798a7e0a3fdf4c9df45820e514b716a8cbc284a Mon Sep 17 00:00:00 2001 From: Gnof <131493877+gnof-the-shark@users.noreply.github.com> Date: Fri, 27 Feb 2026 18:32:25 -0500 Subject: [PATCH 2/9] Change 'record' to 'records' in gnof.json --- domains/gnof.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/domains/gnof.json b/domains/gnof.json index f030964c628..9582961c7cc 100644 --- a/domains/gnof.json +++ b/domains/gnof.json @@ -3,7 +3,7 @@ "username": "Gnof-the-shark", "email": "christophewhite14@gmail.com" }, - "record": { + "records": { "CNAME": "gnof-the-shark.github.io", "MX": [ "mx1.improvmx.com", From ac06e6ece514031a42a52ccf9a983c5fca47239b Mon Sep 17 00:00:00 2001 From: Gnof <131493877+gnof-the-shark@users.noreply.github.com> Date: Fri, 27 Feb 2026 18:55:16 -0500 Subject: [PATCH 3/9] Remove CNAME record from gnof.json Removed CNAME record for the domain. --- domains/gnof.json | 1 - 1 file changed, 1 deletion(-) diff --git a/domains/gnof.json b/domains/gnof.json index 9582961c7cc..7341939f5a9 100644 --- a/domains/gnof.json +++ b/domains/gnof.json @@ -4,7 +4,6 @@ "email": "christophewhite14@gmail.com" }, "records": { - "CNAME": "gnof-the-shark.github.io", "MX": [ "mx1.improvmx.com", "mx2.improvmx.com" From 39a7a2011d98677f7e042ff51c6e6a965bfa1395 Mon Sep 17 00:00:00 2001 From: Gnof <131493877+gnof-the-shark@users.noreply.github.com> Date: Fri, 27 Feb 2026 19:30:40 -0500 Subject: [PATCH 4/9] Add MX and TXT records to gnof.json --- domains/gnof.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/domains/gnof.json b/domains/gnof.json index 7341939f5a9..84de4f5dab5 100644 --- a/domains/gnof.json +++ b/domains/gnof.json @@ -7,6 +7,9 @@ "MX": [ "mx1.improvmx.com", "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all" ] } } From fab5bfb8aaf12b13b50154561a2edd33580e536e Mon Sep 17 00:00:00 2001 From: Gnof <131493877+gnof-the-shark@users.noreply.github.com> Date: Sat, 28 Feb 2026 08:01:37 -0500 Subject: [PATCH 5/9] Update DNS records in gnof.json Removed MX and TXT records, added CNAME record. --- domains/gnof.json | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/domains/gnof.json b/domains/gnof.json index 84de4f5dab5..ec19050ea2a 100644 --- a/domains/gnof.json +++ b/domains/gnof.json @@ -4,12 +4,6 @@ "email": "christophewhite14@gmail.com" }, "records": { - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": [ - "v=spf1 include:spf.improvmx.com ~all" - ] + "CNAME": "gnof-the-shark.github.io" } } From 2e52f4782644216c0cc7f05438918437409a8ab5 Mon Sep 17 00:00:00 2001 From: Gnof <131493877+gnof-the-shark@users.noreply.github.com> Date: Sun, 1 Mar 2026 16:39:20 -0500 Subject: [PATCH 6/9] Update JSON structure and owner username --- domains/gnof.json | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/domains/gnof.json b/domains/gnof.json index ec19050ea2a..3ae68ad696f 100644 --- a/domains/gnof.json +++ b/domains/gnof.json @@ -1,9 +1,18 @@ { + "description": "Portfolio de développement logiciel et services backend pour gnof.", + "repo": "https://github.com/gnof-the-shark/Blog, "owner": { - "username": "Gnof-the-shark", + "username": "gnof-the-shark", "email": "christophewhite14@gmail.com" }, - "records": { - "CNAME": "gnof-the-shark.github.io" + "record": { + "CNAME": "gnof-the-shark.github.io", + "MX": [ + "mx1.improvmx.com.", + "mx2.improvmx.com." + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all" + ] } } From 47ad356845fd6e92ac2c4d7a491cd9f6f73f30b3 Mon Sep 17 00:00:00 2001 From: Gnof <131493877+gnof-the-shark@users.noreply.github.com> Date: Sun, 1 Mar 2026 16:40:07 -0500 Subject: [PATCH 7/9] Fix JSON formatting and update repository URL --- domains/gnof.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/domains/gnof.json b/domains/gnof.json index 3ae68ad696f..aa5c5deb7c8 100644 --- a/domains/gnof.json +++ b/domains/gnof.json @@ -1,6 +1,6 @@ { "description": "Portfolio de développement logiciel et services backend pour gnof.", - "repo": "https://github.com/gnof-the-shark/Blog, + "repo": "https://github.com/gnof-the-shark/Blog", "owner": { "username": "gnof-the-shark", "email": "christophewhite14@gmail.com" @@ -8,8 +8,8 @@ "record": { "CNAME": "gnof-the-shark.github.io", "MX": [ - "mx1.improvmx.com.", - "mx2.improvmx.com." + "mx1.improvmx.com", + "mx2.improvmx.com" ], "TXT": [ "v=spf1 include:spf.improvmx.com ~all" From 6a38128fc463e361b15ca0256742986a0fad9152 Mon Sep 17 00:00:00 2001 From: Gnof <131493877+gnof-the-shark@users.noreply.github.com> Date: Mon, 2 Mar 2026 09:50:46 -0500 Subject: [PATCH 8/9] Update gnof.json for email configuration --- domains/gnof.json | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/domains/gnof.json b/domains/gnof.json index aa5c5deb7c8..6eef616a93f 100644 --- a/domains/gnof.json +++ b/domains/gnof.json @@ -1,18 +1,17 @@ { - "description": "Portfolio de développement logiciel et services backend pour gnof.", - "repo": "https://github.com/gnof-the-shark/Blog", - "owner": { - "username": "gnof-the-shark", - "email": "christophewhite14@gmail.com" - }, - "record": { - "CNAME": "gnof-the-shark.github.io", - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": [ - "v=spf1 include:spf.improvmx.com ~all" - ] - } + "description": "Email for gnof.", + "repo": "https://github.com/gnof-the-shark/Blog", + "owner": { + "username": "gnof-the-shark", + "email": "christophewhite14@gmail.com" + }, + "records": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all" + ] + } } From 329cb50ff1d85471ba32f4249d1611c141395022 Mon Sep 17 00:00:00 2001 From: Gnof <131493877+gnof-the-shark@users.noreply.github.com> Date: Mon, 2 Mar 2026 09:51:32 -0500 Subject: [PATCH 9/9] Add w.gnof.json for gnof website configuration --- domains/w.gnof.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 domains/w.gnof.json diff --git a/domains/w.gnof.json b/domains/w.gnof.json new file mode 100644 index 00000000000..530c0742e45 --- /dev/null +++ b/domains/w.gnof.json @@ -0,0 +1,11 @@ +{ + "description": "Website for gnof.", + "repo": "https://github.com/gnof-the-shark/Blog", + "owner": { + "username": "gnof-the-shark", + "email": "christophewhite14@gmail.com" + }, + "records": { + "CNAME": "gnof-the-shark.github.io" + } +}