diff options
-rw-r--r-- | src/guix/system.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/guix/system.scm b/src/guix/system.scm index 64d43f1..0e941a7 100644 --- a/src/guix/system.scm +++ b/src/guix/system.scm @@ -107,7 +107,8 @@ ssl_protocols TLSv1.3; ssl_ciphers EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH; ssl_prefer_server_ciphers on; - gzip off; # Disable compression altogether due to BREACH + gzip off; # Disable dynamic compression altogether due to BREACH + gzip_static on; charset utf-8; autoindex on; add_header Strict-Transport-Security 'max-age=31536000; includeSubdomains' always; @@ -116,6 +117,7 @@ (service pkg:syskeep-service-type (pkg:syskeep-configuration (tld +tld+))) + (service pkg:cicd-service-type) (service pkg:git-service-type (pkg:git-configuration (export-all? #t) |