diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-11-29 20:37:55 +0300 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-12-17 22:09:10 +0300 |
commit | e517161d6b0ee544dab94477c9ffbad59cc1834b (patch) | |
tree | 2bfba91de6c4b00f6f5516639937a513b43ed8fc /doc | |
parent | 6106d7cae49fb6686a237b53d465c89211ecad8f (diff) | |
download | gnu-guix-e517161d6b0ee544dab94477c9ffbad59cc1834b.tar gnu-guix-e517161d6b0ee544dab94477c9ffbad59cc1834b.tar.gz |
services: php-fpm: Add 'timezone' configuration.
* gnu/services/web.scm: (<php-fpm-configuration>)[timezone]: New record field.
(default-php-fpm-config, php-fpm-shepherd-service, php-fpm-activation): Use
this.
* doc/guix.texi (Web Services): Document this.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 02778588ca..7304cf5f13 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -17658,6 +17658,8 @@ Determines whether php errors and warning should be sent to clients and displayed in their browsers. This is useful for local php development, but a security risk for public sites, as error messages can reveal passwords and personal data. +@item @code{timezone} (default @code{#f}) +Specifies @code{php_admin_value[date.timezone]} parameter. @item @code{workers-logfile} (default @code{(string-append "/var/log/php" (version-major (package-version php)) "-fpm.www.log")}) This file will log the @code{stderr} outputs of php worker processes. Can be set to @code{#f} to disable logging. |