guix-commits
[Top][All Lists]
Advanced

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

branch master updated: nginx: berlin: Add missing /.well-known location


From: Ludovic Courtès
Subject: branch master updated: nginx: berlin: Add missing /.well-known location blocks.
Date: Sun, 29 Nov 2020 06:20:23 -0500

This is an automated email from the git hooks/post-receive script.

civodul pushed a commit to branch master
in repository maintenance.

The following commit(s) were added to refs/heads/master by this push:
     new 17cc501  nginx: berlin: Add missing /.well-known location blocks.
17cc501 is described below

commit 17cc5013fbbb5ce88f5650fea169934c71e167a9
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sun Nov 29 12:19:16 2020 +0100

    nginx: berlin: Add missing /.well-known location blocks.
    
    * hydra/nginx/berlin.scm (%berlin-servers) <bootstrappable.org 443>: Add
    'locations'.
    <issues.guix.info 443>: Likewise.
---
 hydra/nginx/berlin.scm | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/hydra/nginx/berlin.scm b/hydra/nginx/berlin.scm
index fdc4a39..bccfb1b 100644
--- a/hydra/nginx/berlin.scm
+++ b/hydra/nginx/berlin.scm
@@ -886,6 +886,10 @@ PUBLISH-URL."
     (ssl-certificate (le "bootstrappable.org"))
     (ssl-certificate-key (le "bootstrappable.org" 'key))
     (root "/home/rekado/bootstrappable.org")
+    (locations
+     (list (nginx-location-configuration ;certbot
+            (uri "/.well-known")
+            (body (list "root /var/www;")))))
     (raw-content
      (append
       %tls-settings
@@ -934,7 +938,11 @@ PUBLISH-URL."
     (ssl-certificate-key (le "issues.guix.info" 'key))
     (root "/home/rekado/mumi/")
     (locations
-     (list (nginx-location-configuration
+     (list (locations
+            (list (nginx-location-configuration ;certbot
+                   (uri "/.well-known")
+                   (body (list "root /var/www;")))))
+           (nginx-location-configuration
             (uri "/")
             (body '("proxy_pass http://localhost:1234;";)))))
     (raw-content



reply via email to

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