me
/
guix
Archived
1
0
Fork 0

services: certbot: Listen on IPv6.

* gnu/services/certbot.scm (certbot-nginx-server-configurations): Listen on
IPv6 too.
master
Clément Lassieur 2018-02-09 01:00:33 +01:00
parent 5c213d1bee
commit 70cd2239a5
No known key found for this signature in database
GPG Key ID: 89F96D4808F359C7
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
;;; Copyright © 2016 Sou Bunnbu <iyzsong@member.fsf.org>
;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
;;; Copyright © 2017, 2018 Clément Lassieur <clement@lassieur.org>
;;;
;;; 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))