Debian installation pagoda panel
Official installation script of BT panel: (Debian system)
wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && bash install.sh
CentOS installation
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh
As shown in the figure below, the installation is successful.
Log in to your pagoda panel according to the address and password prompted above
Install nginx / SQL / or other running environment software you need
Because sometimes Debian can’t be installed quickly, it’s usually compiled and installed, so the speed is slow!! If you really need to build a station, it is recommended to use the system above centos7, so that the installation and running environment is very fast! It’s usually done in 10 minutes
Open debian9 BBR
echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf
sysctl -p
sysctl net.ipv4.tcp_available_congestion_control
lsmod | grep bbr
Install v2ray server: official script
bash <(curl -L -s https://install.direct/go.sh)
If you prompt curl: command not found, it’s because your VPS doesn’t install curl
How to install curl in Ubuntu / Debian system
apt-get update -y && apt-get install curl -y
The method of installing curl in CentOS system
yum update -y && yum install curl -y
vi /etc/v2ray/config.json
The configuration file of v2ray server is as follows: (the following code can directly cover the source code)
{
Set to start automatically after power on
- systemctl enable v2ray
Start v2ray service
- systemctl start v2ray
Automatically issue SSL certificate and forcibly turn on HTTPS
Configure nginx of the site
location /SoftDown {
proxy_redirect off;
proxy_pass http://127.0.0.1:65432;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $http_host;
}
- Pagoda profile
server{