guix-patches
[Top][All Lists]
Advanced

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

[bug#30459] [PATCH 01/11] services: certbot: Listen on IPv6.


From: Clément Lassieur
Subject: [bug#30459] [PATCH 01/11] services: certbot: Listen on IPv6.
Date: Wed, 14 Feb 2018 22:34:54 +0100

* gnu/services/certbot.scm (certbot-nginx-server-configurations): Listen on
IPv6 too.
---
 gnu/services/certbot.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/services/certbot.scm b/gnu/services/certbot.scm
index 8aac2638b..91249ed3e 100644
--- a/gnu/services/certbot.scm
+++ b/gnu/services/certbot.scm
@@ -1,7 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2016 ng0 <address@hidden>
 ;;; Copyright © 2016 Sou Bunnbu <address@hidden>
-;;; Copyright © 2017 Clément Lassieur <address@hidden>
+;;; Copyright © 2017, 2018 Clément Lassieur <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -98,7 +98,7 @@
      (map
       (lambda (host)
         (nginx-server-configuration
-         (listen '("80"))
+         (listen '("80" "[::]:80"))
          (ssl-certificate #f)
          (ssl-certificate-key #f)
          (server-name (list host))
-- 
2.16.1






reply via email to

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