We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cccbd2 commit 2ae6991Copy full SHA for 2ae6991
wre/lib/WRE/Starman.pm
@@ -119,6 +119,9 @@ sub start {
119
. " --port=" . $config->get("starman/port")
120
. " starman" #Beginning of the starman specific configurations
121
. " --preload=" . $config->get("webgui/root") . "/app.psgi"
122
+ . " --access-log=" . $config->getRoot("var/logs/starman.log")
123
+ . " --error-log=" . $config->getRoot("var/logs/starman_error.log")
124
+ . " --workers=" . $config->get("starman/workers")
125
;
126
`$cmd`; # catch command line output
127
while ($count++ < 10 && !$success) {
wre/var/setupfiles/wre.conf
@@ -23,6 +23,7 @@
23
"connectionTimeout" : 30,
24
"defaultHostname" : "localhost",
25
"port" : 8081,
26
+ "workers" : 10
27
},
28
29
# nginx
0 commit comments