You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
612 B
Bash
22 lines
612 B
Bash
#!/bin/sh
|
|
|
|
#####################################################################
|
|
# usage:
|
|
# sh stop.sh -- stop application @dev
|
|
# sh stop.sh ${env} -- stop application @${env}
|
|
|
|
# examples:
|
|
# sh stop.sh prod -- use conf/nginx-prod.conf to stop OpenResty
|
|
# sh stop.sh -- use conf/nginx-dev.conf to stop OpenResty
|
|
#####################################################################
|
|
|
|
if [ -n "$1" ];then
|
|
PROFILE="$1"
|
|
else
|
|
PROFILE=dev
|
|
fi
|
|
|
|
mkdir -p logs & mkdir -p tmp
|
|
echo "stop lor application with profile: "${PROFILE}
|
|
/usr/local/openresty/nginx/sbin/nginx -s stop -p `pwd`/ -c conf/nginx-${PROFILE}.conf
|