Browse Source

Merge pull request #1305 from TechEmpower/fixPlack

Fixed plack never finishing the start process
Mike Smith 10 years ago
parent
commit
36fa17570d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      frameworks/Perl/plack/setup.sh

+ 2 - 2
frameworks/Perl/plack/setup.sh

@@ -5,5 +5,5 @@ sed -i 's|server unix:.*/FrameworkBenchmarks/plack|server unix:'"${TROOT}"'|g' n
 
 
 export PATH=$PERL_HOME/bin:$PATH
 export PATH=$PERL_HOME/bin:$PATH
 
 
-start_server --backlog=16384 --pid-file=$TROOT/app.pid --path=$TROOT/app.sock -- plackup -E production -s Starlet --max-keepalive-reqs 1000 --max-reqs-per-child 50000 --min-reqs-per-child 40000 --max-workers=${MAX_THREADS} -a $TROOT/app.psgi
-$NGINX_HOME/sbin/nginx -c $TROOT/nginx.conf
+$NGINX_HOME/sbin/nginx -c $TROOT/nginx.conf
+start_server --backlog=16384 --pid-file=$TROOT/app.pid --path=$TROOT/app.sock -- plackup -E production -s Starlet --max-keepalive-reqs 1000 --max-reqs-per-child 50000 --min-reqs-per-child 40000 --max-workers=${MAX_THREADS} -a $TROOT/app.psgi &