1. 准备工作
在开始安装之前,确保你已经准备好以下内容:
- 一台运行Debian 10的服务器
- root权限
- 一个域名
2. 安装v2ray
步骤1:添加apt源
首先,我们需要添加v2ray的APT源。在终端中执行以下命令:
bash wget -qO – https://install.direct/go.sh | bash
步骤2:安装v2ray
在添加完APT源之后,我们可以直接使用apt命令安装v2ray。
bash apt update apt install v2ray
步骤3:配置v2ray
安装完成后,我们需要对v2ray进行一些配置。
首先,编辑/etc/v2ray/config.json
文件,修改一些必要的配置项。
{ “inbounds”: [ { “port”: 10000, “protocol”: “vmess”, “settings”: { “clients”: [ { “id”: “your_client_id”, “level”: 1, “alterId”: 64 } ] }, “streamSettings”: { “network”: “ws”, “wsSettings”: { “path”: “/your_path” } } } ], “outbounds”: [ { “protocol”: “freedom”, “settings”: {} } ]}
将your_client_id
替换为你自己的客户端ID,将/your_path
替换为你自己的路径。
步骤4:启动v2ray
完成配置后,使用以下命令启动v2ray:
bash systemctl start v2ray systemctl enable v2ray
3. 安装nginx
步骤1:安装nginx
使用apt命令安装nginx:
bash apt install nginx
步骤2:配置nginx
在安装完成后,我们需要对nginx进行一些配置。
首先,创建一个新的nginx配置文件/etc/nginx/conf.d/v2ray.conf
,并添加以下内容:
nginx server { listen 80; server_name your_domain;
location / {
proxy_pass http://127.0.0.1:10000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}}
将your_domain
替换为你自己的域名。
步骤3:重启nginx
完成配置后,使用以下命令重启nginx:
bash systemctl restart nginx
4. 常见问题解答
问题1:如何查看v2ray日志?
使用以下命令查看v2ray日志:
bash journalctl -u v2ray
问题2:如何查看nginx日志?
使用以下命令查看nginx日志:
bash tail -f /var/log/nginx/access.log