├── 3w ├── html1.zip ├── html2.zip ├── html3.zip ├── html4.zip ├── html5.zip ├── html6.zip ├── html7.zip └── html8.zip ├── Dockerfile ├── LICENSE ├── README.md ├── config.yaml ├── entrypoint.sh └── nginx.conf /3w/html1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moriuoo/yonggekkk-doprax-xray/6276fad55c387d2b21c3d7b8a8957e564385d118/3w/html1.zip -------------------------------------------------------------------------------- /3w/html2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moriuoo/yonggekkk-doprax-xray/6276fad55c387d2b21c3d7b8a8957e564385d118/3w/html2.zip -------------------------------------------------------------------------------- /3w/html3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moriuoo/yonggekkk-doprax-xray/6276fad55c387d2b21c3d7b8a8957e564385d118/3w/html3.zip -------------------------------------------------------------------------------- /3w/html4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moriuoo/yonggekkk-doprax-xray/6276fad55c387d2b21c3d7b8a8957e564385d118/3w/html4.zip -------------------------------------------------------------------------------- /3w/html5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moriuoo/yonggekkk-doprax-xray/6276fad55c387d2b21c3d7b8a8957e564385d118/3w/html5.zip -------------------------------------------------------------------------------- /3w/html6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moriuoo/yonggekkk-doprax-xray/6276fad55c387d2b21c3d7b8a8957e564385d118/3w/html6.zip -------------------------------------------------------------------------------- /3w/html7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moriuoo/yonggekkk-doprax-xray/6276fad55c387d2b21c3d7b8a8957e564385d118/3w/html7.zip -------------------------------------------------------------------------------- /3w/html8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moriuoo/yonggekkk-doprax-xray/6276fad55c387d2b21c3d7b8a8957e564385d118/3w/html8.zip -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM nginx:latest 2 | LABEL ifeng fscarmen mack-a ygkkk 3 | EXPOSE 80 4 | USER root 5 | COPY nginx.conf /etc/nginx/nginx.conf 6 | COPY config.yaml ./ 7 | COPY entrypoint.sh ./ 8 | RUN chmod a+x ./entrypoint.sh 9 | ENTRYPOINT [ "./entrypoint.sh" ] 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 yonggekkk 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | ## 23.1.12突发更新:由于突然使用人数爆涨,伪装页面出现Bad Gateway或者404页面。。。节点可能不通。。。建议避开目前的高峰期!! 3 | 4 | #### 唯一注意的是一定要随便改个项目名称 5 | 6 | #### 注意此节点仅做备用节点用,主力还是算了吧。。。 7 | 8 | 点击fork、点击绿色的use this template(Create a new repository)、自己下载上传、甚至可以不通过github,每个文件直接上传到doprax上。。。。都可以 9 | 10 | [相关文字视频教程请点击](https://ygkkk.blogspot.com/2023/01/doprax-xray-v2ray-cdn.html) 11 | 12 | --------------------------------------------------------------------------------------- 13 | 14 | [本项目备份地址](https://gitlab.com/rwkgyg/doprax-xray) 15 | #### 鸣谢表: 16 | 静态伪装站取自[mack-a](https://github.com/mack-a/v2ray-agent),参考项目[hiifeng](https://github.com/hiifeng/V2ray-for-Doprax)、[fscarmen](https://github.com/fscarmen2/V2-for-Doprax) 17 | 18 | 19 | -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- 1 | og: 2 | loglevel: info 3 | dns: 4 | servers: 5 | - https+local://8.8.8.8/dns-query 6 | inbounds: 7 | - port: 20000 8 | protocol: vless 9 | settings: 10 | decryption: none 11 | clients: 12 | - id: uuid 13 | streamSettings: 14 | network: ws 15 | wsSettings: 16 | path: /uuid-vl 17 | sniffing: 18 | enabled: true 19 | destOverride: 20 | - http 21 | - tls 22 | - quic 23 | - port: 10000 24 | protocol: vmess 25 | settings: 26 | clients: 27 | - id: uuid 28 | streamSettings: 29 | network: ws 30 | wsSettings: 31 | path: /uuid-vm 32 | sniffing: 33 | enabled: true 34 | destOverride: 35 | - http 36 | - tls 37 | - quic 38 | - port: 40000 39 | protocol: shadowsocks 40 | settings: 41 | password: "uuid" 42 | method: chacha20-ietf-poly1305 43 | ivcheck: true 44 | streamSettings: 45 | network: ws 46 | wsSettings: 47 | path: /uuid-ss 48 | sniffing: 49 | enabled: true 50 | destOverride: 51 | - http 52 | - tls 53 | - quic 54 | - port: 30000 55 | protocol: trojan 56 | settings: 57 | clients: 58 | - password: "uuid" 59 | streamSettings: 60 | network: ws 61 | wsSettings: 62 | path: /uuid-tr 63 | sniffing: 64 | enabled: true 65 | destOverride: 66 | - http 67 | - tls 68 | - quic 69 | outbounds: 70 | - protocol: freedom 71 | tag: direct 72 | settings: 73 | domainStrategy: UseIPv4 74 | -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moriuoo/yonggekkk-doprax-xray/6276fad55c387d2b21c3d7b8a8957e564385d118/entrypoint.sh -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- 1 | 2 | user nginx; 3 | worker_processes auto; 4 | 5 | error_log /var/log/nginx/error.log notice; 6 | pid /var/run/nginx.pid; 7 | 8 | 9 | events { 10 | worker_connections 1024; 11 | } 12 | 13 | 14 | http { 15 | include /etc/nginx/mime.types; 16 | default_type application/octet-stream; 17 | 18 | log_format main '$remote_addr - $remote_user [$time_local] "$request" ' 19 | '$status $body_bytes_sent "$http_referer" ' 20 | '"$http_user_agent" "$http_x_forwarded_for"'; 21 | 22 | access_log /var/log/nginx/access.log main; 23 | 24 | sendfile on; 25 | #tcp_nopush on; 26 | 27 | keepalive_timeout 65; 28 | 29 | #gzip on; 30 | 31 | #include /etc/nginx/conf.d/*.conf; 32 | 33 | server { 34 | listen 80 default_server; 35 | listen [::]:80 default_server; 36 | 37 | server_name _; 38 | charset utf-8; 39 | root html; 40 | 41 | location / { 42 | root /usr/share/nginx/html; 43 | index index.html index.htm; 44 | } 45 | 46 | location /uuid-vm { 47 | proxy_redirect off; 48 | proxy_pass http://127.0.0.1:10000; 49 | proxy_http_version 1.1; 50 | proxy_set_header Upgrade $http_upgrade; 51 | proxy_set_header Connection upgrade; 52 | proxy_set_header Host $http_host; 53 | #proxy_set_header X-Real-IP $remote_addr; 54 | #proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 55 | } 56 | 57 | location /uuid-vl { 58 | proxy_redirect off; 59 | proxy_pass http://127.0.0.1:20000; 60 | proxy_http_version 1.1; 61 | proxy_set_header Upgrade $http_upgrade; 62 | proxy_set_header Connection upgrade; 63 | proxy_set_header Host $http_host; 64 | #proxy_set_header X-Real-IP $remote_addr; 65 | #proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 66 | } 67 | 68 | location /uuid-tr { 69 | proxy_redirect off; 70 | proxy_pass http://127.0.0.1:30000; 71 | proxy_http_version 1.1; 72 | proxy_set_header Upgrade $http_upgrade; 73 | proxy_set_header Connection upgrade; 74 | proxy_set_header Host $http_host; 75 | #proxy_set_header X-Real-IP $remote_addr; 76 | #proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 77 | } 78 | 79 | location /uuid-ss { 80 | proxy_redirect off; 81 | proxy_pass http://127.0.0.1:40000; 82 | proxy_http_version 1.1; 83 | proxy_set_header Upgrade $http_upgrade; 84 | proxy_set_header Connection upgrade; 85 | proxy_set_header Host $http_host; 86 | #proxy_set_header X-Real-IP $remote_addr; 87 | #proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 88 | } 89 | } 90 | } 91 | --------------------------------------------------------------------------------