Skip to content

Commit

Permalink
Standardization
Browse files Browse the repository at this point in the history
  • Loading branch information
brei0x committed Jun 16, 2018
1 parent 5f4076a commit 4143cf3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Execute: `cp C:\server\nginx\conf\nginx.conf C:\server\nginx\conf\nginx.conf.bak
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include C:/server/nginx/conf/conf.d/*.conf;
}
```

Expand Down Expand Up @@ -339,7 +339,7 @@ Execute: `cp C:\server\php\php.ini-development C:\server\php\php.ini`
xdebug.profiler_enable_trigger = 1
xdebug.profiler_output_dir = "C:/server/var/tmp/profiler"
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_port=9001
; Display all the tree
xdebug.var_display_max_depth = -1
Expand Down
4 changes: 2 additions & 2 deletions _restart.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ echo --------------------------
echo.
echo.

call "C:\server\bin\stop-php-fcgi.bat"
call "C:\server\bin\stop-nginx.bat"
call "C:\server\bin\stop-php-fcgi.bat"
call "C:\server\bin\stop-mysql.bat"

echo.
Expand All @@ -19,8 +19,8 @@ pause
echo.
echo.

call "C:\server\bin\start-php-fcgi.bat"
call "C:\server\bin\start-nginx.bat"
call "C:\server\bin\start-php-fcgi.bat"
call "C:\server\bin\start-mysql.bat"

echo.
Expand Down
4 changes: 2 additions & 2 deletions _start.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ echo ------------------------
echo.
echo.

call "C:\server\bin\start-php-fcgi.bat"
call "C:\server\bin\start-nginx.bat"

echo.
echo.

call "C:\server\bin\start-nginx.bat"
call "C:\server\bin\start-php-fcgi.bat"

echo.
echo.
Expand Down
4 changes: 2 additions & 2 deletions _stop.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ echo -----------------------
echo.
echo.

call "C:\server\bin\stop-php-fcgi.bat"
call "C:\server\bin\stop-nginx.bat"

echo.
echo.

call "C:\server\bin\stop-nginx.bat"
call "C:\server\bin\stop-php-fcgi.bat"

echo.
echo.
Expand Down
2 changes: 1 addition & 1 deletion bin/stop-nginx.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if "%errorlevel%" EQU "0" (
echo "Process (%prg%) stoping..."

cd "C:/server/nginx"
nginx.exe -s quit
%prg% -s quit
) else (
echo "Process (%prg%) is not currently running."
)

0 comments on commit 4143cf3

Please sign in to comment.