Giter VIP home page Giter VIP logo

beiyi1020-1's Introduction

使用 northflank 部署 Xray 高性能代理服务,通过 Vless + WS + Tls 协议传输,并配置 Web 网站。

提醒: 滥用可能导致账户被BAN!!!

概述

每次部署自动选择最新的 Alpine Linux 和 Xray-core 。

可通过自定义网络配置文件启动 Xray 和 Caddy,按需配置各种功能。

  • 务必替换部署时的默认 UUID。
  • start.sh文件里修改UUID和伪装网站。
  • northflank账号需要绑定信用卡,可以搭建两个免费服务。

镜像

注册网站

Deploy

流量中转

可以使用 Cloudflare 的 Workers 来中转流量,配置为:
const SingleDay = 'xxx.herokuapp.com';
const DoubleDay = 'xxx.herokuapp.com';
addEventListener(
    "fetch", event => {
        let nd = new Date();
        if (nd.getDate() % 2) {
            host = SingleDay;
        } else {
            host = DoubleDay;
        }
        let url = new URL(event.request.url);
        url.hostname = host;
        let request = new Request(url, event.request);
        event.respondWith(
            fetch(request)
        )
    }
)

Xray 默认配置

  * 协议:Vless/vmess
  * 地址:XXX--XXX--4h6hhh7t7x5j.code.run
  * 端口:443
  * 默认UUID:5aaed9b7-7fe3-47c3-bb52-db59859ce198
  * 加密:none
  * 传输协议:ws
  * 伪装类型:none
  * 伪装域名:
  * 路径:/api-vless 或 /api-vmess
  * 底层传输安全:tls
  * 跳过证书验证:false
  * SNI:XXX--XXX--4h6hhh7t7x5j.code.run

beiyi1020-1's People

Contributors

lonny321 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.