Browse Source

fix bug

main
xiaoz 6 months ago
parent
commit
49a594277d
  1. 12
      dnmp.sh
  2. 4
      nginx/conf/nginx.conf

12
dnmp.sh

@ -86,8 +86,8 @@ start(){ @@ -86,8 +86,8 @@ start(){
# 运行前检查
run_check
# 获取用户传递的第二个参数
service=$2
echo $service
service=$1
# 如果service为空,或者为all,则运行所有服务
if [ "${service}" = "" ] || [ "${service}" = "all" ]
then
@ -141,8 +141,8 @@ stop(){ @@ -141,8 +141,8 @@ stop(){
# 运行前检查
run_check
# 获取用户传递的第二个参数
service=$2
echo $service
service=$1
# 如果service为空,或者为all,则停止所有服务
if [ "${service}" = "" ] || [ "${service}" = "all" ]
then
@ -194,10 +194,10 @@ case $1 in @@ -194,10 +194,10 @@ case $1 in
init
;;
'start')
start
start ${2}
;;
'stop')
stop
stop ${2}
;;
*)
echo "Usage: $0 {init|run|stop}"

4
nginx/conf/nginx.conf

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
user root;
# user root;
worker_processes auto;
worker_rlimit_nofile 50000;
error_log /usr/local/nginx/logs/error.log;
@ -100,7 +100,7 @@ http { @@ -100,7 +100,7 @@ http {
root /var/www/html/default;
index index.php index.html index.htm;
# PHP 配置
location ~ [^/]\.php(/|$) {
include fastcgi_params;

Loading…
Cancel
Save