nginx-tutorial/demos/scripts/demo01-start.bat

17 lines
488 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

rem -------------------------------------------------
rem 启动 Demo1
rem 1. 启动 Nginx
rem 2. 启动一个 JavaApp访问地址为localhost:9010
rem -------------------------------------------------
@echo off
echo ">>>> 1. Start nginx"
cd "../nginx-1.14.0"
call nginx-start.bat
echo ">>>> 2. Start javaapp - localhost:9010"
cd "../javaapp"
java -Dtomcat.connector.port=9010 -cp "target/JavaWebApp/WEB-INF/classes;target/JavaWebApp/WEB-INF/lib/*" io.github.dunwu.Main
pause