guix-commits
[Top][All Lists]
Advanced

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

branch master updated: hydra: bayfront: Fix NGinx config issues.


From: Christopher Baines
Subject: branch master updated: hydra: bayfront: Fix NGinx config issues.
Date: Thu, 25 Mar 2021 16:11:58 -0400

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

cbaines pushed a commit to branch master
in repository maintenance.

The following commit(s) were added to refs/heads/master by this push:
     new c426767  hydra: bayfront: Fix NGinx config issues.
c426767 is described below

commit c426767f76c64fa3d4b372ec293e4e3e461ef217
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Thu Mar 25 20:08:02 2021 +0000

    hydra: bayfront: Fix NGinx config issues.
    
    * hydra/bayfront.scm (%guix-hpc.bordeaux.inria.fr-nginx-servers):
    Remove = character from ssl-certificate-key.
    (%logs.guix.gnu.org-nginx-servers): Add missing characters to NGinx
    config part.
---
 hydra/bayfront.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/hydra/bayfront.scm b/hydra/bayfront.scm
index f22e876..50589df 100644
--- a/hydra/bayfront.scm
+++ b/hydra/bayfront.scm
@@ -318,7 +318,7 @@ access_log   /var/log/nginx/guix-hpc.access.log;"))
       (ssl-certificate
        "/etc/letsencrypt/live/guix-hpc.bordeaux.inria.fr/fullchain.pem")
       (ssl-certificate-key
-       "/etc/letsencrypt/live/=guix-hpc.bordeaux.inria.fr/privkey.pem")
+       "/etc/letsencrypt/live/guix-hpc.bordeaux.inria.fr/privkey.pem")
       (raw-content
        '("
 # Make sure SSL is disabled.
@@ -370,9 +370,9 @@ access_log   /var/log/nginx/logs.access.log;"))
 # Make sure SSL is disabled.
 ssl_protocols       TLSv1 TLSv1.1 TLSv1.2;
 
- Disable weak cipher suites.
-sl_ciphers         HIGH:!aNULL:!MD5;
-sl_prefer_server_ciphers on;
+# Disable weak cipher suites.
+ssl_ciphers         HIGH:!aNULL:!MD5;
+ssl_prefer_server_ciphers on;
 
 # Use our own DH parameters created with:
 #    openssl dhparam -out dhparams.pem 2048



reply via email to

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