add XTLS-Reality

This commit is contained in:
mercury
2023-06-28 03:19:12 +04:00
parent e2ba69f21c
commit 9e60e4afdf
10 changed files with 244 additions and 6 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
from alpine:latest
run apk add nginx openssh \
run apk add nginx-mod-stream openssh \
&& mkdir /root/.ssh \
&& mkdir /var/cache/nginx
env ENV="/root/.ashrc"
+11
View File
@@ -0,0 +1,11 @@
from alpine:latest
run apk add openssh openssl jq \
&& mkdir /root/.ssh \
&& wget https://github.com/XTLS/Xray-core/releases/download/v1.8.3/Xray-linux-64.zip \
&& unzip Xray-linux-64.zip \
&& mv xray /usr/bin/ \
&& rm Xray-linux-64.zip \
&& rm geoip.dat \
&& rm geosite.dat \
&& chmod +x /usr/bin/xray
env ENV="/root/.ashrc"