From decc48769608d3de5ee363ac0ffab98fc48348b1 Mon Sep 17 00:00:00 2001 From: Benyamin Date: Wed, 14 Dec 2022 10:49:17 +0330 Subject: [PATCH] added vless + websocket + docker-compose --- VLESS-WS-Docker/config.json | 39 ++++++++++++++++++++++++++++++ VLESS-WS-Docker/docker-compose.yml | 11 +++++++++ 2 files changed, 50 insertions(+) create mode 100644 VLESS-WS-Docker/config.json create mode 100644 VLESS-WS-Docker/docker-compose.yml diff --git a/VLESS-WS-Docker/config.json b/VLESS-WS-Docker/config.json new file mode 100644 index 0000000..7c91e6e --- /dev/null +++ b/VLESS-WS-Docker/config.json @@ -0,0 +1,39 @@ +{ + "log": { + "loglevel": "warning" + }, + "inbounds": [ + { + "listen": "0.0.0.0", + "port": 1234, + "protocol": "vless", + "settings": { + "clients": [ + { + "id": "", + "level": 0, + "email": "love@v2fly.org" + } + ], + "decryption": "none", + "fallbacks": [ + { + "dest": 8001 + } + ] + }, + "streamSettings": { + "network": "ws", + "wsSettings": { + "path": "/vmess" + } + } + } + ], + "outbounds": [ + { + "protocol": "freedom", + "tag": "direct" + } + ] +} diff --git a/VLESS-WS-Docker/docker-compose.yml b/VLESS-WS-Docker/docker-compose.yml new file mode 100644 index 0000000..613193c --- /dev/null +++ b/VLESS-WS-Docker/docker-compose.yml @@ -0,0 +1,11 @@ +version: '3' +services: + xray: + image: teddysun/xray + restart: unless-stopped + network_mode: host + environment: + - V2RAY_VMESS_AEAD_FORCED=false + entrypoint: ["/usr/bin/xray", "-config", "/etc/xray/config.json"] + volumes: + - ./config.json:/etc/xray/config.json:ro