diff options
author | EuAndreh <eu@euandre.org> | 2025-03-14 06:44:29 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-03-14 06:44:29 -0300 |
commit | ec04883247116da21b06d9056a95a0ce5023c458 (patch) | |
tree | d5ac02356b8713c03cdeeed06c16ca2e529ec68c | |
parent | system.scm: Indent service configurations (diff) | |
download | server-ec04883247116da21b06d9056a95a0ce5023c458.tar.gz server-ec04883247116da21b06d9056a95a0ce5023c458.tar.xz |
system.scm: Remove "http2" from nginx listen
-rw-r--r-- | src/guix/system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guix/system.scm b/src/guix/system.scm index 9169e9e..247c074 100644 --- a/src/guix/system.scm +++ b/src/guix/system.scm @@ -75,7 +75,7 @@ (list (nginx-server-configuration (server-name (list +tld+)) - (listen '("[::]:443 ssl http2" "443 ssl http2")) + (listen '("[::]:443 ssl" "443 ssl")) (root "/srv/www") (ssl-certificate (pkg:fmt "/etc/letsencrypt/live/~a/fullchain.pem" +tld+)) (ssl-certificate-key (pkg:fmt "/etc/letsencrypt/live/~a/privkey.pem" +tld+)) |