15 lines
321 B
Batchfile
15 lines
321 B
Batchfile
@echo off
|
|
echo ######################
|
|
echo "Arrancando Servicios"
|
|
echo ######################
|
|
echo.
|
|
call forever start forever.json
|
|
call forever list
|
|
|
|
IF NOT EXIST @salix\build\nginx (
|
|
echo.
|
|
echo.
|
|
echo "Creando carpeta @salix\build\nginx...."
|
|
mkdir @salix\build\nginx
|
|
)
|
|
call nginx -c nginx.conf -p @salix |