summaryrefslogtreecommitdiff
path: root/tw/services
diff options
context:
space:
mode:
authorTimo Wilken2023-06-03 20:27:50 +0200
committerTimo Wilken2023-06-03 20:27:50 +0200
commitbb169097d97e9ff20e56d7d1a950866c6b25f007 (patch)
tree9b6366a5ca1677bedae7baef6d6bf28408116156 /tw/services
parent60e0505f107791d5cf89e1503bbf3b582d5b3941 (diff)
Simplify SSL_CERT_DIR expression
No need to nest string-append and file-append.
Diffstat (limited to 'tw/services')
-rw-r--r--tw/services/php-fpm.scm2
1 files changed, 1 insertions, 1 deletions
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)))))))