-
Notifications
You must be signed in to change notification settings - Fork 245
/
vless_tcp_xtls_wp.sh
598 lines (580 loc) · 20.1 KB
/
vless_tcp_xtls_wp.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
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
#!/bin/bash
blue(){
echo -e "\033[34m\033[01m$1\033[0m"
}
green(){
echo -e "\033[32m\033[01m$1\033[0m"
}
red(){
echo -e "\033[31m\033[01m$1\033[0m"
}
yellow(){
echo -e "\033[33m\033[01m$1\033[0m"
}
logblue(){
echo -e "\033[34m\033[01m$1\033[0m" | tee -ai /var/atrandys.log
}
loggreen(){
echo -e "\033[32m\033[01m$1\033[0m" | tee -ai /var/atrandys.log
}
logred(){
echo -e "\033[31m\033[01m$1\033[0m" | tee -ai /var/atrandys.log
}
logyellow(){
echo -e "\033[33m\033[01m$1\033[0m" | tee -ai /var/atrandys.log
}
logcmd(){
eval $1 | tee -ai /var/atrandys.log
}
source /etc/os-release
RELEASE=$ID
VERSION=$VERSION_ID
loggreen "== Script: atrandys/v2ray-ws-tls/vless_tcp_xtls_wp.sh"
loggreen "== Time : $(date +"%Y-%m-%d %H:%M:%S")"
loggreen "== OS : $RELEASE $VERSION"
loggreen "== Kernel: $(uname -r)"
loggreen "== User : $(whoami)"
sleep 2s
install_wordpress(){
loggreen "$(date +"%Y-%m-%d %H:%M:%S") ==== 安装wordpress"
logcmd "yum install -y iptables-services"
systemctl start iptables
systemctl enable iptables
iptables -F
SSH_PORT=$(awk '$1=="Port" {print $2}' /etc/ssh/sshd_config)
if [ ! -n "$SSH_PORT" ]; then
iptables -A INPUT -p tcp -m tcp --dport 22 -j ACCEPT
else
iptables -A INPUT -p tcp -m tcp --dport ${SSH_PORT} -j ACCEPT
fi
iptables -A INPUT -p tcp -m tcp --dport 80 -j ACCEPT
iptables -A INPUT -p tcp -m tcp --dport 443 -j ACCEPT
iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
iptables -A INPUT -i lo -j ACCEPT
iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT ACCEPT
service iptables save
loggreen "====================================================================="
loggreen "安全起见,iptables仅开启ssh,http,https端口,如需开放其他端口请自行放行"
loggreen "====================================================================="
echo
echo
sleep 1
yum -y install wget
mkdir /usr/share/wordpresstemp
cd /usr/share/wordpresstemp/
wget https://cn.wordpress.org/latest-zh_CN.zip
if [ ! -f "/usr/share/wordpresstemp/latest-zh_CN.zip" ]; then
logred "从cn官网下载wordpress失败,尝试从github下载……"
logcmd "wget https://github.com/atrandys/wordpress/raw/master/latest-zh_CN.zip"
fi
if [ ! -f "/usr/share/wordpresstemp/latest-zh_CN.zip" ]; then
logred "从github下载wordpress也失败了,请尝试手动安装……"
loggreen "从wordpress官网下载包然后命名为latest-zh_CN.zip,新建目录/usr/share/wordpresstemp/,上传到此目录下即可"
exit 1
fi
loggreen "==============="
loggreen " 1.安装必要软件"
loggreen "==============="
sleep 1s
echo
wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
wget https://rpms.remirepo.net/enterprise/remi-release-7.rpm
if [ -f "epel-release-latest-7.noarch.rpm" -a -f "remi-release-7.rpm" ]; then
loggreen "下载软件源成功"
else
logred "下载软件源失败,退出安装"
exit 1
fi
logcmd "rpm -ivh remi-release-7.rpm epel-release-latest-7.noarch.rpm --force --nodeps"
#sed -i "0,/enabled=0/s//enabled=1/" /etc/yum.repos.d/epel.repo
yum -y install unzip vim tcl expect curl socat
echo
echo
loggreen "============"
loggreen "2.安装PHP7.4"
loggreen "============"
sleep 1
logcmd "yum -y install php74 php74-php-gd php74-php-opcache php74-php-pdo php74-php-mbstring php74-php-cli php74-php-fpm php74-php-mysqlnd php74-php-xml"
service php74-php-fpm start
chkconfig php74-php-fpm on
if [ `yum list installed | grep php74 | wc -l` -ne 0 ]; then
echo
loggreen "【checked】 PHP7安装成功"
echo
echo
sleep 2s
php_status=1
fi
loggreen "==============="
loggreen " 3.安装MySQL"
loggreen "==============="
sleep 1s
#wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
wget https://repo.mysql.com/mysql80-community-release-el7-3.noarch.rpm
logcmd "rpm -ivh mysql80-community-release-el7-3.noarch.rpm --force --nodeps"
yum -y install mysql-server
systemctl enable mysqld.service
systemctl start mysqld.service
if [ `yum list installed | grep mysql-community | wc -l` -ne 0 ]; then
loggreen "【checked】 MySQL安装成功"
echo
echo
sleep 2
mysql_status=1
fi
echo
echo
loggreen "==============="
loggreen " 4.配置MySQL"
loggreen "==============="
sleep 2
originpasswd=`cat /var/log/mysqld.log | grep password | head -1 | rev | cut -d ' ' -f 1 | rev`
mysqlpasswd=`mkpasswd -l 18 -d 2 -c 3 -C 4 -s 5 | sed $'s/[\'\/\;\"\:\.\?\&]//g'`
cat > ~/.my.cnf <<EOT
[mysql]
user=root
password="$originpasswd"
EOT
mysql --connect-expired-password -e "alter user 'root'@'localhost' identified by '$mysqlpasswd';"
systemctl restart mysqld
sleep 5s
cat > ~/.my.cnf <<EOT
[mysql]
user=root
password="$mysqlpasswd"
EOT
mysql --connect-expired-password -e "create database wordpress_db;"
echo
loggreen "===================="
loggreen " 5.配置php和php-fpm"
loggreen "===================="
echo
echo
sleep 1s
sed -i "s/upload_max_filesize = 2M/upload_max_filesize = 20M/;" /etc/opt/remi/php74/php.ini
sed -i "s/pm.start_servers = 5/pm.start_servers = 3/;s/pm.min_spare_servers = 5/pm.min_spare_servers = 3/;s/pm.max_spare_servers = 35/pm.max_spare_servers = 8/;" /etc/opt/remi/php74/php-fpm.d/www.conf
systemctl restart php74-php-fpm.service
systemctl restart nginx.service
loggreen "===================="
loggreen " 6.安装wordpress"
loggreen "===================="
echo
echo
sleep 1s
cd /usr/share/nginx/html
mv /usr/share/wordpresstemp/latest-zh_CN.zip ./
unzip latest-zh_CN.zip
mv wordpress/* ./
#cp wp-config-sample.php wp-config.php
logcmd "wget https://raw.githubusercontent.com/atrandys/trojan/master/wp-config.php"
loggreen "===================="
loggreen " 7.配置wordpress"
loggreen "===================="
echo
echo
sleep 1
sed -i "s/database_name_here/wordpress_db/;s/username_here/root/;s?password_here?$mysqlpasswd?;" /usr/share/nginx/html/wp-config.php
#echo "define('FS_METHOD', "direct");" >> /usr/share/nginx/html/wp-config.php
chown -R apache:apache /usr/share/nginx/html/
#chmod 775 apache:apache /usr/share/nginx/html/ -Rf
chmod -R 775 /usr/share/nginx/html/wp-content
loggreen "=========================================================================="
loggreen " WordPress服务端配置已完成,请打开浏览器访问您的域名进行前台配置"
loggreen " 数据库密码等信息参考文件:/usr/share/nginx/html/wp-config.php"
loggreen "=========================================================================="
echo
if [ "$cert_failed" == "1" ]; then
loggreen "======nginx信息======"
logred "申请证书失败,请尝试手动申请证书."
fi
loggreen "=================v2ray配置文件=================="
cat /usr/local/etc/v2ray/myconfig.json
loggreen "本次安装检测信息如下:"
logcmd "ps -aux | grep -e nginx -e v2ray -e mysql -e php"
}
check_release(){
loggreen "$(date +"%Y-%m-%d %H:%M:%S") ==== 检查系统版本"
logcmd "yum install -y wget"
if [ "$RELEASE" == "centos" ]; then
systemPackage="yum"
if [ "$VERSION" == "6" ] ;then
logred "$(date +"%Y-%m-%d %H:%M:%S") - 暂不支持CentOS 6.\n== Install failed."
exit
fi
if [ "$VERSION" == "5" ] ;then
logred "$(date +"%Y-%m-%d %H:%M:%S") - 暂不支持CentOS 5.\n== Install failed."
exit
fi
if [ -f "/etc/selinux/config" ]; then
CHECK=$(grep SELINUX= /etc/selinux/config | grep -v "#")
if [ "$CHECK" == "SELINUX=enforcing" ]; then
loggreen "$(date +"%Y-%m-%d %H:%M:%S") - SELinux状态非disabled,关闭SELinux."
setenforce 0
sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
#loggreen "SELinux is not disabled, add port 80/443 to SELinux rules."
#loggreen "==== Install semanage"
#logcmd "yum install -y policycoreutils-python"
#semanage port -a -t http_port_t -p tcp 80
#semanage port -a -t http_port_t -p tcp 443
#semanage port -a -t http_port_t -p tcp 37212
#semanage port -a -t http_port_t -p tcp 37213
elif [ "$CHECK" == "SELINUX=permissive" ]; then
loggreen "$(date +"%Y-%m-%d %H:%M:%S") - SELinux状态非disabled,关闭SELinux."
setenforce 0
sed -i 's/SELINUX=permissive/SELINUX=disabled/g' /etc/selinux/config
fi
fi
firewall_status=`firewall-cmd --state`
if [ "$firewall_status" == "running" ]; then
loggreen "$(date +"%Y-%m-%d %H:%M:%S") - FireWalld状态为running,关闭FireWalld."
#firewall-cmd --zone=public --add-port=80/tcp --permanent
#firewall-cmd --zone=public --add-port=443/tcp --permanent
#firewall-cmd --reload
logcmd "systemctl disable firewalld"
logcmd "systemctl stop firewalld"
fi
#rm -f /var/lib/rpm/.rpm.lock
while [ ! -f "nginx-release-centos-7-0.el7.ngx.noarch.rpm" ]
do
logcmd "wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm"
if [ ! -f "nginx-release-centos-7-0.el7.ngx.noarch.rpm" ]; then
logred "$(date +"%Y-%m-%d %H:%M:%S") - 下载nginx rpm包失败,继续重试..."
fi
done
logcmd "rpm -ivh nginx-release-centos-7-0.el7.ngx.noarch.rpm --force --nodeps"
#loggreen "Prepare to install nginx."
#yum install -y libtool perl-core zlib-devel gcc pcre* >/dev/null 2>&1
logcmd "yum install -y epel-release"
else
logred "$(date +"%Y-%m-%d %H:%M:%S") - 当前系统不被支持. \n== Install failed."
exit
fi
}
check_port(){
loggreen "$(date +"%Y-%m-%d %H:%M:%S") ==== 检查端口"
echo
echo
logcmd "$systemPackage -y install net-tools"
Port80=`netstat -tlpn | awk -F '[: ]+' '$1=="tcp"{print $5}' | grep -w 80`
Port443=`netstat -tlpn | awk -F '[: ]+' '$1=="tcp"{print $5}' | grep -w 443`
if [ -n "$Port80" ]; then
process80=`netstat -tlpn | awk -F '[: ]+' '$5=="80"{print $9}'`
logred "$(date +"%Y-%m-%d %H:%M:%S") - 80端口被占用,占用进程:${process80}\n== Install failed."
exit 1
fi
if [ -n "$Port443" ]; then
process443=`netstat -tlpn | awk -F '[: ]+' '$5=="443"{print $9}'`
logred "$(date +"%Y-%m-%d %H:%M:%S") - 443端口被占用,占用进程:${process443}.\n== Install failed."
exit 1
fi
}
install_nginx(){
loggreen "$(date +"%Y-%m-%d %H:%M:%S") ==== 安装nginx"
echo
echo
logcmd "$systemPackage install -y nginx"
if [ -f "/etc/nginx" ]; then
logred "$(date +"%Y-%m-%d %H:%M:%S") - 看起来nginx没有安装成功,请先使用脚本中的删除v2ray功能,然后再重新安装.\n== Install failed."
exit 1
fi
cat > /etc/nginx/nginx.conf <<-EOF
user root;
worker_processes 1;
#error_log /etc/nginx/error.log warn;
#pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '\$remote_addr - \$remote_user [\$time_local] "\$request" '
'\$status \$body_bytes_sent "\$http_referer" '
'"\$http_user_agent" "\$http_x_forwarded_for"';
#access_log /etc/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 120;
client_max_body_size 20m;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
EOF
cat > /etc/nginx/conf.d/default.conf<<-EOF
server {
listen 0.0.0.0:80;
server_name $your_domain;
root /usr/share/nginx/html/;
index index.php index.html;
#rewrite ^(.*)$ https://\$host\$1 permanent;
}
EOF
loggreen "$(date +"%Y-%m-%d %H:%M:%S") ==== 检测nginx配置文件"
logcmd "nginx -t"
systemctl enable nginx.service
systemctl restart nginx.service
loggreen "$(date +"%Y-%m-%d %H:%M:%S") - 使用acme.sh申请https证书."
curl https://get.acme.sh | sh
logcmd "~/.acme.sh/acme.sh --issue -d $your_domain --webroot /usr/share/nginx/html/"
if test -s /root/.acme.sh/$your_domain/fullchain.cer; then
loggreen "$(date +"%Y-%m-%d %H:%M:%S") - 申请https证书成功."
else
cert_failed="1"
logred "$(date +"%Y-%m-%d %H:%M:%S") - 申请证书失败,请尝试手动申请证书."
fi
cat > /etc/nginx/conf.d/default.conf<<-EOF
server {
listen 127.0.0.1:37212 http2;
server_name $your_domain;
root /usr/share/nginx/html;
index index.php index.html index.htm;
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name;
include fastcgi_params;
}
location / {
try_files \$uri \$uri/ /index.php?\$args;
}
}
server {
listen 0.0.0.0:80;
server_name $your_domain;
return 301 https://$your_domain\$request_uri;
}
EOF
install_v2ray
install_wordpress
}
install_v2ray(){
loggreen "$(date +"%Y-%m-%d %H:%M:%S") ==== 安装v2ray"
echo
echo
mkdir /usr/local/etc/v2ray/
mkdir /usr/local/etc/v2ray/cert
logcmd "bash <(curl -L -s https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh)"
cd /usr/local/etc/v2ray/
rm -f config.json
v2uuid=$(cat /proc/sys/kernel/random/uuid)
cat > /usr/local/etc/v2ray/config.json<<-EOF
{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"listen": "0.0.0.0",
"port": 443,
"protocol": "vless",
"settings": {
"clients": [
{
"id": "$v2uuid",
"level": 0,
"email": "a@b.com",
"flow":"xtls-rprx-origin"
}
],
"decryption": "none",
"fallbacks": [
{
"alpn": "h2",
"dest": 37212
}
]
},
"streamSettings": {
"network": "tcp",
"security": "xtls",
"xtlsSettings": {
"serverName": "$your_domain",
"alpn": [
"h2",
"http/1.1"
],
"certificates": [
{
"certificateFile": "/usr/local/etc/v2ray/cert/fullchain.cer",
"keyFile": "/usr/local/etc/v2ray/cert/private.key"
}
]
}
}
}
],
"outbounds": [
{
"protocol": "freedom",
"settings": { }
}
]
}
EOF
cat > /usr/local/etc/v2ray/client.json<<-EOF
{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"port": 1080,
"listen": "127.0.0.1",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "$your_domain",
"port": 443,
"users": [
{
"id": "$v2uuid",
"flow": "xtls-rprx-origin",
"encryption": "none",
"level": 0
}
]
}
]
},
"streamSettings": {
"network": "tcp",
"security": "xtls",
"xtlsSettings": {
"serverName": "$your_domain"
}
}
}
]
}
EOF
if [ -d "/usr/share/nginx/html/" ]; then
cd /usr/share/nginx/html/ && rm -f ./*
#wget https://github.com/atrandys/v2ray-ws-tls/raw/master/web.zip >/dev/null 2>&1
#logcmd "wget https://github.com/atrandys/trojan/raw/master/fakesite.zip"
#logcmd "unzip -o fakesite.zip"
#unzip web.zip >/dev/null 2>&1
fi
#systemctl stop v2ray
#cd /usr/local/bin/
#rm -f v2*
#wget https://github.com/rprx/v2ray-vless/releases/download/xtls/v2ray-linux-64.zip
#wget https://github.com/rprx/v2ray-vless/releases/download/xtls3/v2ray-linux-64.zip
#unzip v2ray-linux-64.zip
#chmod +x v2ray v2ctl
systemctl enable v2ray.service
~/.acme.sh/acme.sh --installcert -d $your_domain \
--key-file /usr/local/etc/v2ray/cert/private.key \
--fullchain-file /usr/local/etc/v2ray/cert/fullchain.cer \
--reloadcmd "chmod -R 777 /usr/local/etc/v2ray/cert && systemctl restart v2ray.service"
cat > /usr/local/etc/v2ray/myconfig.json<<-EOF
{
地址:${your_domain}
端口:443
id:${v2uuid}
加密:none
流控:xtls-rprx-origin
别名:自定义
传输协议:tcp
伪装类型:none
底层传输:xtls
跳过证书验证:false
}
EOF
loggreen "== v2ray安装完成."
}
check_domain(){
logcmd "$systemPackage install -y wget curl unzip"
logblue "Eenter your domain:"
read your_domain
real_addr=`ping ${your_domain} -c 1 | sed '1{s/[^(]*(//;s/).*//;q}'`
local_addr=`curl ipv4.icanhazip.com`
if [ $real_addr == $local_addr ] ; then
loggreen "域名解析地址与VPS IP地址匹配."
install_nginx
else
logred "域名解析地址与VPS IP地址不匹配."
read -p "强制安装?请输入 [Y/n] :" yn
[ -z "${yn}" ] && yn="y"
if [[ $yn == [Yy] ]]; then
sleep 1s
install_nginx
else
exit 1
fi
fi
}
remove_v2ray(){
loggreen "$(date +"%Y-%m-%d %H:%M:%S") - 删除v2ray."
systemctl stop v2ray.service
systemctl disable v2ray.service
systemctl stop nginx
systemctl disable nginx
if [ "$RELEASE" == "centos" ]; then
yum remove -y nginx
else
apt-get -y autoremove nginx
apt-get -y --purge remove nginx
apt-get -y autoremove && apt-get -y autoclean
find / | grep nginx | sudo xargs rm -rf
fi
rm -rf /usr/local/share/v2ray/ /usr/local/etc/v2ray/
rm -f /usr/local/bin/v2ray /usr/local/bin/v2ctl
rm -rf /etc/systemd/system/v2ray*
rm -rf /etc/nginx
rm -rf /usr/share/nginx/html/*
rm -rf /root/.acme.sh/
yum remove -y php74 php74-php-gd php74-php-pdo php74-php-opcache php74-php-mbstring php74-php-cli php74-php-fpm php74-php-mysqlnd mysql
rm -rf /var/lib/mysql
rm -rf /usr/lib64/mysql
rm -rf /usr/share/mysql
loggreen "nginx & v2ray has been deleted."
}
function start_menu(){
clear
loggreen " ======================================================"
loggreen " 描述:v2ray(vless) + tcp + xtls + wordpress一键安装脚本"
loggreen " 系统:支持centos7"
loggreen " 作者:atrandys www.atrandys.com"
loggreen " ======================================================"
echo
loggreen " 1. 安装 vless + tcp + xtls + wordpress"
loggreen " 2. 更新 v2ray"
logred " 3. 删除 v2ray + wordpress"
logyellow " 0. Exit"
echo
read -p "输入数字:" num
case "$num" in
1)
check_release
check_port
check_domain
;;
2)
bash <(curl -L -s https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh)
systemctl restart v2ray
;;
3)
remove_v2ray
;;
0)
exit 1
;;
*)
clear
logred "Enter a correct number"
sleep 2s
start_menu
;;
esac
}
start_menu