一、准备域名 这里 http://www.dot.tk/en/index.html?lang=en ,可免费申请域名。按 Use DNS 将 IP address 设定为 VPS 的 IP 地址。 二、安装 v2ray nginx 1 、安装 wget unzip daemon 等 apt install unzip daemon jq wget vim 2 、安装 v2ray bash <(curl -L -s https://install.direct/go.sh ) 记录 port 和 UUID 。 比如: PORT:28434 UUID:d38c9abd-dacc-4aee-bab5-6fd44c9fc324 3 、安装 EasyEngine ,它內置了 Nginx 和 Let’s Encrypt wget - qO ee rt .cx / ee && sudo bash ee 安装中需要输入名字和邮箱,安装完需要如下命令使用 source / etc / bash_completion .d / ee_auto .rc 使用如下命令申请 Let’s Encrypt ssl 证书 ee site create xuefliang.ga – html – letsencrypt 出现错误,使用如下命令进行查看 cat / var / log / letsencrypt / letsencrypt .log 4 、将 v2ray 加入 nginx, 需要需改红色的端口号 vim /var/www/xuefliang.ga/conf/nginx/v2ray.conf location /enterv2ray/ { proxy_redirect off; proxy_pass http://127.0.0.1: 28434; proxy_http_version 1.1; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_hea
评论
发表评论