guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: hydra: dns: Add video.guix for live streaming server.


From: Ludovic Courtès
Subject: 02/02: hydra: dns: Add video.guix for live streaming server.
Date: Sat, 10 Sep 2022 06:33:17 -0400 (EDT)

civodul pushed a commit to branch master
in repository maintenance.

commit ddc143997730ac6f286dd77b547a64c9dbd54227
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sat Sep 10 12:17:28 2022 +0200

    hydra: dns: Add video.guix for live streaming server.
    
    * hydra/modules/sysadmin/dns.scm (video-streaming-ip4): New variable.
    (guix.gnu.org.zone): Add "video" A record.
---
 hydra/modules/sysadmin/dns.scm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/hydra/modules/sysadmin/dns.scm b/hydra/modules/sysadmin/dns.scm
index de9bc00..d414e1b 100644
--- a/hydra/modules/sysadmin/dns.scm
+++ b/hydra/modules/sysadmin/dns.scm
@@ -60,6 +60,10 @@
 (define dover-ip4 "80.67.176.63")
 (define data.qa-ip4 "88.99.33.53")
 
+;; Digital Ocean server used during the Ten Years of Guix to serve the live
+;; stream.
+(define video-streaming-ip4 "188.166.84.95")
+
 ;; The SOA MNAME and one NS record must always be consistent.
 (define primary-ns "ns1.gnu.org.")
 
@@ -125,6 +129,7 @@
   ("bordeaux" ""  "IN"  "AAAA"   bayfront-ip6)
   ("10years"  ""  "IN"  "A"      bayfront-ip4)
   ("10years"  ""  "IN"  "AAAA"   bayfront-ip6)
+  ("video"    ""  "IN"  "A"      video-streaming-ip4)
   ("qa"       ""  "IN"  "A"      bayfront-ip4)
   ("qa"       ""  "IN"  "AAAA"   bayfront-ip6)
 
@@ -141,4 +146,4 @@
             (origin "guix.gnu.org")
             (ns primary-ns)
             (entries guix.gnu.org.zone)
-            (serial 2022090610)))))
+            (serial 2022091012)))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]