Coder Social home page Coder Social logo

vless-heroku's Introduction

VLESS-heroku

Deploy VLESS and Trojan server on heroku

Do not promote any website

部署提示

注意事项
如果能继续使用的,请保持低调!!!
捕获1 Fork本项目后将readme.md中的Dimitri2020007替换为自己的用户名后再进行部署,非常重要,切记!!!!
若出现We couldn't deploy your app because the source code violates the Salesforce Acceptable Use and External-Facing Services Policy.提示,则返回仓库,>Setting>Repository name修改仓库名。
选择不向任何网站转传是为了更长久的相聚,愿你能发现墙外美好而又有趣的地方。
带有删除线的部分表示不适用或已经废弃。
自2021.11.18起不再部署caddy,改为单一部署以减少项目大小,提高项目稳定性,不保证本项目有被封的可能。

English version

Pay Attenation
If you can continue to use it, please keep a low profile.
Fork this project, replace Dimitri2020007 in readme.md with your own user name before deploying, it is very important, remember!!!!
If the prompt We couldn't deploy your app because the source code violates the Salesforce Acceptable Use and External-Facing Services Policy. appears, return to the warehouse, >Setting>Repository name to modify the warehouse name.
The part with a strikethrough indicates that it is not applicable or has been obsoleted.
The reason for choosing not to repost to any website is to get together for a longer time. I hope you can find beautiful and interesting places outside the wall.
Since 2021.11.18, caddy will no longer be deployed, but a single deployment will be used to reduce the size of the project and improve the stability of the project. There is no guarantee that this project may be blocked.
This wall will fall. Beliefs become reality. (Ronald Reagan)

Deploy

VLESS Client Setup

Connection Variables Values
Address yourAppName.herokuapp.com
Cloudflare Reverse Proxy IP
SNI none
AllowInsecure false
Port 443
Host yourAppName.herokuapp.com
Cloudflare Reverse Proxy Domain Name
Path /$ID-vless
id Generate using UUID generator or V2RayN/V2RayNG client generate
uuidgenerator
Flow none
encryption none
Transport ws
Tls Tls must open, otherwise your network was insecure!

Trojan Client Setup

Connection Variables Values
Address yourAppName.herokuapp.com
Cloudflare Reverse Proxy IP
SNI Cloudflare Reverse Proxy Domain Name
Port 443
Host yourAppName.herokuapp.com
Cloudflare Reverse Proxy Domain Name
Path /$ID-trojan
password Generate using UUID generator or V2RayN/V2RayNG client generate
uuidgenerator
Transport ws
Tls Tls must open, otherwise your network was insecure!

Client Ws+Tls+Xtls-rprx-direct(Flow) Support Status

Client Status
2dust V2RayN
2dust V2RayNG
Ws+Tls+Flow
OpenWrt SSRPlus Ws+Tls
OpenWrt Passwall Ws+Tls
QV2Ray Ws+Tls

Trojan Ws+Tls Support Status

Client Support Trojan ws+tls?
2dust V2RayN
2dust V2RayNG
No, Please use VLESS ws+tls
OpenWrt SSRPlus Yes
OpenWrt Passwall No, Please use VLESS ws+tls

Cloudflare Reverse Proxy Code (Choose one from both examples)

example 1

addEventListener(
  "fetch", event => {
    let url = new URL(event.request.url);
    url.host = "appname.herokuapp.com";
    let request = new Request(url, event.request);
    event.respondWith(
      fetch(request)
    )
  }
)

example 2

const SingleDay = 'appname.herokuapp.com'
const DoubleDay = 'appname.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="appname.herokuapp.com";
        let request=new Request(url,event.request);
        event. respondWith(
            fetch(request)
        )
    }
)

example 3

const Day0 = 'app0.herokuapp.com'
const Day1 = 'app1.herokuapp.com'
const Day2 = 'app2.herokuapp.com'
const Day3 = 'app3.herokuapp.com'
const Day4 = 'app4.herokuapp.com'
addEventListener(
    "fetch",event => {
    
        let nd = new Date();
        let day = nd.getDate() % 5;
        if (day === 0) {
            host = Day0
        } else if (day === 1) {
            host = Day1
        } else if (day === 2) {
            host = Day2
        } else if (day === 3){
            host = Day3
        } else if (day === 4){
            host = Day4
        } else {
            host = Day0
        }
        
        let url=new URL(event.request.url);
        url.hostname=host;
        let request=new Request(url,event.request);
        event. respondWith(
            fetch(request)
        )
    }
)

Acknowledgments

Important information

New users only need to modify the id

Abuse is strictly prohibited, I am not responsible for all problems arising from abuse, and use and cherish!

This project is not suitable for long-term use over the wall.

For security reasons, please use cdn instead of custom domain names to achieve VLESS+WS+TLS.

It is forbidden to promote this project on any website!!!!

vless-heroku's People

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.