nginx-tutorial/examples/scripts/demo04-start.bat

21 lines
604 B
Batchfile
Raw Normal View History

2018-10-12 18:31:56 +08:00
@echo off
2018-07-11 19:46:11 +08:00
rem -----------------------------------------------------------------------------
rem Demo04 - 动静分离
rem 1. 启动 Nginx
rem 2. 启动一个 JavaApp访问地址分别为
rem localhost:9040
rem -----------------------------------------------------------------------------
2018-10-12 18:31:56 +08:00
2018-07-11 19:46:11 +08:00
echo ">>>> 1. Start nginx"
2018-10-12 18:31:56 +08:00
pushd %~dp0..\nginx-1.14.0
2018-07-11 19:46:11 +08:00
call nginx-start.bat
2018-10-12 18:31:56 +08:00
popd
2018-07-11 19:46:11 +08:00
echo ">>>> 2. Start 3 java app: localhost:9040"
2018-10-12 18:31:56 +08:00
pushd %~dp0..\javaapp
2018-07-11 19:46:11 +08:00
start /min java -Dtomcat.connector.port=9040 -cp "target/JavaWebApp/WEB-INF/classes;target/JavaWebApp/WEB-INF/lib/*" io.github.dunwu.Main
2018-10-12 18:31:56 +08:00
popd
2018-07-11 19:46:11 +08:00
pause