mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: services: web: Have fcgiwrap log to a file.
This makes it easier to access the output. * gnu/services/web.scm (fcgiwrap-shepherd-service): Pass #:log-file to make-forkexec-constructor.
This commit is contained in:
parent
190912cb8e
commit
264f7189e8
1 changed files with 2 additions and 1 deletions
|
@ -841,7 +841,8 @@ (define fcgiwrap-shepherd-service
|
|||
(start #~(make-forkexec-constructor
|
||||
'(#$(file-append package "/sbin/fcgiwrap")
|
||||
"-s" #$socket)
|
||||
#:user #$user #:group #$group))
|
||||
#:user #$user #:group #$group
|
||||
#:log-file "/var/log/fcgiwrap.log"))
|
||||
(stop #~(make-kill-destructor)))))))
|
||||
|
||||
(define fcgiwrap-activation
|
||||
|
|
Loading…
Reference in a new issue