-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx.sh
579 lines (567 loc) · 15.1 KB
/
nginx.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
#! /bin/bash
source $(cd $(dirname $0);pwd)/core.sh
source $(cd $(dirname $0);pwd)/cert/acme.sh
source $(cd $(dirname $0);pwd)/nginx/init.sh
source $(cd $(dirname $0);pwd)/nginx/server.sh
source $(cd $(dirname $0);pwd)/nginx/proxy.sh
source $(cd $(dirname $0);pwd)/nginx/stream.sh
source $(cd $(dirname $0);pwd)/nginx/upstream.sh
show_menu() {
choice=$2
if [[ ! -n $2 ]]; then
echo "> Nginx管理"
echo "------------------------"
echo "1. 添加站点"
echo "2. 管理站点"
echo "3. 添加负载均衡"
echo "4. 管理负载均衡"
echo "5. 添加TCP转发"
echo "6. 添加UDP转发"
echo "7. 管理端口转发"
echo "8. 绑定xray自动转发"
echo "------------------------"
echo "11. 启动服务"
echo "12. 停止服务"
echo "13. 重启服务"
echo "14. 检测配置"
echo "15. 启动xray自动转发"
echo "16. 关闭xray自动转发"
echo "------------------------"
echo "00. 安装nginx"
echo "99. 卸载nginx"
echo "------------------------"
echo "0. 返回主菜单"
echo "------------------------"
echo
if [[ -n $1 ]]; then
echo -e "${red}$1${plain}"
echo
fi
read -p "请输入选择: " choice
fi
case $choice in
1)
clear
is_nginx_env
get_nginx_env
sub_title="添加站点\n------------------------"
echo -e $sub_title
while read -p "域名: " domain
do
goback $domain "clear;show_menu"
if [[ -n $domain ]]; then
is_param_true "is_domain" "${domain[*]}"
if [[ $? == 1 ]]; then
warning "绑定域名中存在格式错误" "$sub_title"
continue
fi
name=`echo "${domain[*]}" | awk -F " " '{print $1}'`
if [[ -n $(ls $CONFDIR | grep -E "^(\[[0-9]{2}\])?$name\.conf(\.bak)?$") ]]; then
warning "存在相同域名配置" "$sub_title"
continue
fi
else
domain="localhost"
fi
break
done
sub_title="$sub_title\n域名: ${domain[*]}"
clear && echo -e $sub_title
while read -p "端口(80): " port
do
goback $port "clear;show_menu"
if [[ ! -n $port ]]; then
port=80
fi
if [[ ! -n $(is_port "$port") && -n $port ]]; then
warning "请填写正确的端口" "$sub_title"
continue
fi
if [[ $domain == "localhost" && $port == "80" ]]; then
warning "您没有设定域名,为了避免冲突请选择其他端口" "$sub_title"
continue
fi
break
done
sub_title="$sub_title\n端口(80): $port"
clear && echo -e $sub_title
while read -p "静态目录: " wwwroot
do
goback $wwwroot "clear;show_menu"
if [[ -n $wwwroot ]]; then
wwwroot=`parse_path $wwwroot`
fi
break
done
sub_title="$sub_title\n静态目录: $wwwroot"
clear && echo -e $sub_title
if [[ $domain == "localhost" ]]; then
while read -p "配置命名: " name
do
goback $name "clear;show_menu"
if [[ ! -n $name ]]; then
warning "请为配置命名" "$sub_title"
continue
fi
if [[ ! -n $(echo "$name" | gawk '/([a-zA-Z0-9_\-\.]+)$/{print $0}') ]]; then
warning "命名请用英文字母数字下划线中划线组成" "$sub_title"
continue
fi
if [[ -n $(ls $CONFDIR | grep -E "^(\[[0-9]{2}\])?$name\.conf(\.bak)?$") ]]; then
warning "命名名称已存在" "$sub_title"
continue
fi
break
done
sub_title="$sub_title\n配置命名: $name"
clear && echo -e $sub_title
fi
echo
# 创建配置及文件
create_server $(to_array_param --domain "${domain[*]}") --port $port --wwwroot "$wwwroot" --name "$name"
echo
echo -e "- ${yellow}站点配置已添加${plain}"
echo
read -n1 -p "按任意键继续" key
clear
show_menu
;;
2)
clear
is_nginx_env
echo "管理站点"
echo "------------------------"
echo
get_nginx_env
get_server_list
echo
if [[ -n $3 ]]; then
echo -e "${red}$3${plain}"
echo
fi
while read -p "输入名称: " name
do
goback $name "clear;show_menu" "show_menu \"\" 2"
if [[ ! -n $name ]]; then
show_menu "" 2 "请输入名称"
continue
fi
if [[ ! -n $(ls $CONFDIR | grep -E "^(\[[0-9]{2}\])?$name\.conf(\.bak)?$") ]]; then
show_menu "" 2 "输入的名称不存在"
continue
fi
break
done
echo
server_options "$(ls $CONFDIR | grep -E "^(\[[0-9]{2}\])?$name\.conf(\.bak)?$")" 2
echo
read -n1 -p "按任意键继续" key
clear
show_menu
;;
3)
clear
is_nginx_env
get_nginx_env
sub_title="添加负载均衡\n------------------------"
echo -e $sub_title
while read -p "名称: " name
do
goback $name "clear;show_menu"
if [[ ! -n $name ]]; then
warning "请填写名称" "$sub_title"
continue
fi
if [[ ! -n $(echo "$name" | gawk '/([a-zA-Z0-9_]+)$/{print $0}') ]]; then
warning "名称请用英文字母数字下划线组成" "$sub_title"
continue
fi
break
done
sub_title="$sub_title\n名称: $name"
clear && echo -e $sub_title
while read -p "服务器: " server
do
goback $server "clear;show_menu"
if [[ ! -n $server ]]; then
warning "请填写服务器" "$sub_title"
continue
fi
if [[ ! -n $(is_webadress "$server") ]]; then
warning "服务器地址格式错误,请正确写<IP:PORT>" "$sub_title"
continue
fi
break
done
sub_title="$sub_title\n服务器: $server"
clear && echo -e $sub_title
echo
create_upstream --name "$name" --server "$server"
echo
echo -e "- ${yellow}站点配置已添加${plain}"
echo
read -n1 -p "按任意键继续" key
clear
show_menu
;;
4)
clear
is_nginx_env
echo "管理负载均衡"
echo "------------------------"
echo
get_nginx_env
get_upstream_list
echo
if [[ -n $3 ]]; then
echo -e "${red}$3${plain}"
echo
fi
while read -p "输入名称: " name
do
goback $name "clear;show_menu" "show_menu \"\" 4"
if [[ ! -n $name ]]; then
show_menu "" 4 "请输入名称"
continue
fi
if [[ ! -n $(ls $WORKDIR/upstream | grep -E "^(\[[0-9]{2}\])?$name\.(conf|hash)(\.bak)?$") ]]; then
show_menu "" 4 "输入的名称不存在"
continue
fi
break
done
echo
upstream_options "$(ls $WORKDIR/upstream | grep -E "^(\[[0-9]{2}\])?$name\.(conf|hash)(\.bak)?$")" 4
echo
read -n1 -p "按任意键继续" key
clear
show_menu
;;
5|6)
clear
is_nginx_env
get_nginx_env
case $choice in
5)
sub_title="添加TCP转发\n------------------------"
udp_mode=""
;;
6)
sub_title="添加UDP转发\n------------------------"
udp_mode="true"
;;
esac
echo -e $sub_title
echo
while read -p "转发端口: " port
do
goback $port "clear;show_menu"
if [[ ! -n $port ]]; then
warning "请填写转发端口" "$sub_title"
continue
fi
if [[ ! -n $(is_port "$port") ]]; then
warning "请填写正确的端口" "$sub_title"
continue
fi
break
done
sub_title="$sub_title\n转发端口: $port"
clear && echo -e $sub_title
while read -p "代理地址: " proxy_pass
do
goback $proxy_pass "clear;show_menu"
if [[ ! -n $proxy_pass ]]; then
warning "请填写代理地址" "$sub_title"
continue
fi
if [[ -n $(echo "$proxy_pass" | grep ":") ]]; then
if [[ ! -n $(is_webadress "$proxy_pass") ]]; then
warning "代理地址格式错误,请填写<IP:PORT>或负载均衡名称" "$sub_title"
continue
fi
else
if [[ ! -n $(echo "$proxy_pass" | gawk '/([a-zA-Z0-9_\-\.]+)$/{print $0}') ]]; then
warning "代理地址格式错误,请填写<IP:PORT>或负载均衡名称" "$sub_title"
continue
fi
fi
break
done
sub_title="$sub_title\n代理地址: $proxy_pass"
clear && echo -e $sub_title
while read -p "响应超时: " timeout
do
goback $timeout "clear;show_menu"
if [[ -n $timeout && ! -n $(echo "$timeout" | gawk '/^[1-9]{1}[0-9]{1,2}?$/{print $0}') ]]; then
warning "响应超时时间必须是1-999的数字" "$sub_title"
continue
fi
break
done
sub_title="$sub_title\n响应超时: $timeout"
clear && echo -e $sub_title
while read -p "连接超时: " connect_timeout
do
goback $connect_timeout "clear;show_menu"
if [[ -n $connect_timeout && ! -n $(echo "$connect_timeout" | gawk '/^[1-9]{1}[0-9]{1,2}?$/{print $0}') ]]; then
warning "连接超时时间必须是1-999的数字" "$sub_title"
continue
fi
break
done
sub_title="$sub_title\n连接超时: $connect_timeout"
clear && echo -e $sub_title
while read -p "配置命名: " name
do
goback $name "clear;show_menu"
if [[ ! -n $name ]]; then
warning "请为配置命名" "$sub_title"
continue
fi
if [[ ! -n $(echo "$name" | gawk '/([a-zA-Z0-9_\-\.]+)$/{print $0}') ]]; then
warning "命名请用英文字母数字下划线中划线组成" "$sub_title"
continue
fi
if [[ -n $(ls $WORKDIR/stream/conf | grep -E "^(\[[0-9]{2}\])?$name\.conf(\.bak)?$") ]]; then
warning "命名名称已存在" "$sub_title"
continue
fi
break
done
sub_title="$sub_title\n配置命名: $name"
clear && echo -e $sub_title
echo
create_stream --name "$name" --port "$port" --proxy_pass "$proxy_pass" --timeout "$timeout" --connect_timeout "$connect_timeout" --udp "$udp_mode"
echo
read -n1 -p "按任意键继续" key
clear
show_menu
;;
7)
clear
is_nginx_env
echo "管理端口转发"
echo "------------------------"
echo
get_nginx_env
get_stream_list
echo
if [[ -n $3 ]]; then
echo -e "${red}$3${plain}"
echo
fi
while read -p "输入名称: " name
do
goback $name "clear;show_menu" "show_menu \"\" 7"
if [[ ! -n $name ]]; then
show_menu "" 7 "请输入名称"
continue
fi
if [[ ! -n $(ls $WORKDIR/stream/conf | grep -E "^(\[[0-9]{2}\])?$name\.conf(\.bak)?$") ]]; then
show_menu "" 7 "输入的名称不存在"
continue
fi
break
done
echo
stream_options "$(ls $WORKDIR/stream/conf | grep -E "^(\[[0-9]{2}\])?$name\.conf(\.bak)?$")" 7
echo
read -n1 -p "按任意键继续" key
clear
show_menu
;;
8)
clear
is_nginx_env
echo "绑定xray自动转发"
echo "------------------------"
echo
get_nginx_env
get_server_list
echo
if [[ -n $3 ]]; then
echo -e "${red}$3${plain}"
echo
fi
while read -p "输入名称: " name
do
goback $name "clear;show_menu" "show_menu \"\" 2"
if [[ ! -n $name ]]; then
show_menu "" 2 "请输入名称"
continue
fi
if [[ ! -n $(ls $CONFDIR | grep -E "^(\[[0-9]{2}\])?$name\.conf(\.bak)?$") ]]; then
show_menu "" 2 "输入的名称不存在"
continue
fi
break
done
echo
files=$(ls $CONFDIR | grep -E "*.conf(\.bak)?$")
for file in ${files[@]}
do
sed -i "/\*.inbound;/d" $CONFDIR/$file
done
sleep 3
filename=$(ls $CONFDIR | grep -E "^(\[[0-9]{2}\])?$name\.conf(\.bak)?$")
mkdir -p $WORKDIR/inbounds
sed -i "/*.conf;/a\ include $WORKDIR/inbounds/\*.inbound;" $CONFDIR/$filename
systemctl restart nginx
echo -e "xray自动转发已绑定到域名 -- $name"
echo
read -n1 -p "按任意键继续" key
clear
show_menu
;;
11)
clear
is_nginx_env
if [[ $(systemctl status nginx | grep "active" | cut -d '(' -f2|cut -d ')' -f1) == 'running' ]]; then
systemctl restart nginx
else
systemctl start nginx
fi
systemctl status nginx
echo
read -n1 -p "按任意键继续" key
clear
show_menu
;;
12)
clear
is_nginx_env
if [[ $(systemctl status nginx | grep "active" | cut -d '(' -f2|cut -d ')' -f1) == 'running' ]]; then
systemctl stop nginx
fi
systemctl status nginx
echo
read -n1 -p "按任意键继续" key
clear
show_menu
;;
13)
clear
is_nginx_env
systemctl restart nginx
systemctl status nginx
echo
read -n1 -p "按任意键继续" key
clear
show_menu
;;
14)
clear
echo "检测配置"
echo "------------------------"
echo
is_nginx_env
nginx -v
echo
echo "-- $(systemctl status nginx | grep "active" | cut -d '(' -f2|cut -d ')' -f1) --"
echo
nginx -t
echo
read -n1 -p "按任意键继续" key
clear
show_menu
;;
15)
clear
is_nginx_env
echo "启动xray自动转发"
echo "------------------------"
echo
if [[ ! -n $(find /etc -name "rc.local") ]]; then
echo -e "\#\!/bin/bash -e\n" | sed 's/\\//g' > /etc/rc.local
echo -e "" > /etc/rc.local
fi
rcfile=$(find /etc -name "rc.local" | tail -n1)
if [[ ! -n $(cat $rcfile | grep "inbound.sh") ]]; then
curl -Lso- $KENOTE_BASH_MIRROR/base.sh | bash -s -- --init inbounds
bash $KENOTE_NGINX_HOME/inbound.sh --init
echo "nohup bash $KENOTE_NGINX_HOME/inbound.sh>$KENOTE_NGINX_HOME/logs/inbounds/inbounds.txt 2>&1 &" >> $rcfile
chmod +x $rcfile
systemctl daemon-reload
systemctl enable rc-local.service
systemctl restart rc-local.service
echo
fi
echo -e "xray自动转发已启动"
echo
read -n1 -p "按任意键继续" key
clear
show_menu
;;
16)
clear
is_nginx_env
echo "关闭xray自动转发"
echo "------------------------"
echo
if [[ -n $(cat /etc/rc.d/rc.local | grep "inbound.sh") ]]; then
sed -i "/inbound.sh/d" /etc/rc.d/rc.local
systemctl daemon-reload
systemctl restart rc-local.service
rm -rf $KENOTE_NGINX_HOME/inbounds/*
systemctl restart nginx
echo
fi
echo -e "xray自动转发已关闭"
echo
read -n1 -p "按任意键继续" key
clear
show_menu
;;
00)
clear
if !(nginx -v &> /dev/null); then
echo
install_nginx
fi
get_nginx_env
if [[ $CONFDIR == $CONFLINK ]]; then
echo
init_nginx_conf $KENOTE_NGINX_HOME
fi
echo
echo -e "- ${green}初始化完成${plain}"
echo
read -n1 -p "按任意键继续" key
clear
show_menu
;;
99)
clear
if (nginx -v &> /dev/null); then
echo
confirm "确定要卸载 nginx 吗?" "n"
if [[ $? == 0 ]]; then
remove_nginx
echo
echo -e "- ${green}nginx 卸载完成${plain}"
else
clear
show_menu
return
fi
else
echo
echo -e "- ${yellow}nginx 尚未安装${plain}"
fi
echo
read -n1 -p "按任意键继续" key
clear
show_menu
;;
0)
run_script start.sh
;;
*)
clear
show_menu "请输入正确的数字"
;;
esac
}
clear
show_menu