1234567891011121314151617 |
- #!/bin/bash
- sed -i 's|server unix:.*/FrameworkBenchmarks/web-simple|server unix:'"${TROOT}"'|g' nginx.conf
- fw_depends perl nginx
- cpanm --notest --no-man-page \
- Web::[email protected] \
- [email protected] \
- DBD::[email protected] \
- [email protected] \
- [email protected] \
- JSON::[email protected]
-
- nginx -c $TROOT/nginx.conf
- plackup -E production -s Starman --workers=${CPU_COUNT} -l $TROOT/frameworks-benchmark.sock -a $TROOT/app.pl &
|