From bb169097d97e9ff20e56d7d1a950866c6b25f007 Mon Sep 17 00:00:00 2001 From: Timo Wilken Date: Sat, 3 Jun 2023 20:27:50 +0200 Subject: Simplify SSL_CERT_DIR expression No need to nest string-append and file-append. --- tw/services/php-fpm.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tw/services/php-fpm.scm b/tw/services/php-fpm.scm index 4bdb899e..ff961801 100644 --- a/tw/services/php-fpm.scm +++ b/tw/services/php-fpm.scm @@ -38,7 +38,7 @@ ;; XXX: this stanza added, for Nextcloud News #:environment-variables (cons* - (string-append "SSL_CERT_DIR=" #$(file-append nss-certs "/etc/ssl/certs")) + (string-append "SSL_CERT_DIR=" #$nss-certs "/etc/ssl/certs") (default-environment-variables)) #:pid-file #$pid-file)) (stop #~(make-kill-destructor))))))) -- cgit v1.2.3