Issue-id: OCS-9
[msb/apigateway.git] / msb-core / openresty-ext / src / assembly / resources / openresty / run.bat
1 @REM
2 @REM Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
3 @REM
4 @REM Licensed under the Apache License, Version 2.0 (the "License");
5 @REM you may not use this file except in compliance with the License.
6 @REM You may obtain a copy of the License at
7 @REM
8 @REM     http://www.apache.org/licenses/LICENSE-2.0
9 @REM
10 @REM Unless required by applicable law or agreed to in writing, software
11 @REM distributed under the License is distributed on an "AS IS" BASIS,
12 @REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 @REM See the License for the specific language governing permissions and
14 @REM limitations under the License.
15 @REM
16 @REM     Author: Zhaoxing Meng
17 @REM     email: meng.zhaoxing1@zte.com.cn
18 @REM
19
20 @echo off
21 title openresty-server
22 @if not "%ECHO%" == ""  echo %ECHO%
23 @if "%OS%" == "Windows_NT"  setlocal
24
25 set DIRNAME=.
26
27 if "%OS%" == "Windows_NT" set DIRNAME=%~dp0%
28
29 set ARGS=
30 :loop
31 if [%1] == [] goto endloop
32         set ARGS=%ARGS% %1
33         shift
34         goto loop
35 :endloop
36
37 set HOME=%DIRNAME%nginx
38 set _NGINXCMD=%HOME%\nginx.exe
39
40 echo =========== openresty config info  ============================================
41 echo HOME=%HOME%
42 echo _NGINXCMD=%_NGINXCMD%
43 echo ===============================================================================
44
45 cd /d "%HOME%"
46 echo @WORK_DIR@%HOME%
47 echo @C_CMD@ "%_NGINXCMD%"
48 %_NGINXCMD%
49 IF ERRORLEVEL 1 goto showerror
50 exit
51 :showerror
52 echo WARNING: Error occurred during startup or Server abnormally stopped by way of killing the process,Please check!
53 echo After checking, press any key to close 
54 pause
55 exit