We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e03e6c commit 1cc96e8Copy full SHA for 1cc96e8
pkg/phpfpm/process.go
@@ -30,8 +30,8 @@ func NewProcess(
30
cmd.Env = os.Environ()
31
cmd.Env = append(cmd.Env, fmt.Sprintf("FPM_WRAPPER_SOCK=unix://%s", wrapperSocket))
32
33
- //cmd.Args = append(cmd.Args, "--nodaemonize")
34
- //cmd.Args = append(cmd.Args, "--fpm-config", fpmConfigPath)
+ cmd.Args = append(cmd.Args, "--nodaemonize")
+ cmd.Args = append(cmd.Args, "--fpm-config", fpmConfigPath)
35
cmd.Args = append(cmd.Args, extraArgs...)
36
37
return &Process{cmd: cmd, shutdownDelay: shutdownDelay}
0 commit comments