GNU bug report logs -
#63877
[PATCH] gnu: services: web: Set SSL_CERT_DIR in php-fpm environment.
Previous Next
Full log
View this message in rfc822 format
On 2023-06-04 14:59, Timo Wilken wrote:
> @@ -1096,6 +1100,9 @@ (define php-fpm-shepherd-service
> #$@(if php-ini-file
> `("-c" ,php-ini-file)
> '()))
> + #:environment-variables
> + (append #$environment-variables
> + (default-environment-variables))
Ungexp-ing lists can be rather tricky since your snippet will expand to:
--8<---------------cut here---------------start------------->8---
...
#:environment-variables (append ("FOO=bar" ...)
(default-environment-variables))
...
--8<---------------cut here---------------end--------------->8---
Which is interpreted as a procedure call. (and results in a hanged shepherd)
You need to quote the list here:
--8<---------------cut here---------------start------------->8---
#:environment-variables (append '#$environment-variables
(default-environment-variables))
--8<---------------cut here---------------end--------------->8---
Bonus points if you can write a small system test for this. (see
gnu/tests/web.scm for inspiration)
For our purposes, a pair of HTTP servers where one of them uses a
self-signed certificate will suffice.
--
Furthermore, I consider that nonfree software must be eradicated.
Cheers,
Bruno.
This bug report was last modified 1 year and 119 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.