Skip to content

Commit 234985f

Browse files
authored
remove all options & add regenerate option
1 parent 7e7c8c2 commit 234985f

File tree

2 files changed

+24
-21
lines changed

2 files changed

+24
-21
lines changed

README.md

+13-14
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,23 @@ This script:
66
* Generates docker-compose.yml and reality (xray) configuration
77
* Generates client configuration string and QRcode
88

9-
## Quick start
10-
Install everything with a single commmad with default config:
9+
This script is designed for Ubuntu and Debian.
10+
11+
## Installation
12+
Copy and pase the line below in terminal:
1113
```
12-
curl -sL https://bit.ly/realityez|bash
14+
bash <(curl -sL https://bit.ly/realityez)
1315
```
16+
After a while you will get confgiuration string and QR code:
17+
![image](https://user-images.githubusercontent.com/39186039/232563871-0140e10a-22b4-4653-9bc9-cdba519a8b41.png)
1418

15-
## Custom Installation
19+
## Generate new configuration
20+
If you want to remove old configuration and generate new configuration, copy and pase this line:
1621
```
17-
mkdir reality
18-
cd reality
19-
curl -fsSL https://raw.githubusercontent.com/aleskxyz/reality-ezpz/master/reality-ezpz.sh -o reality-ezpz.sh
20-
sudo bash reality-ezpz.sh <domain> <install_path>
22+
bash <(curl -sL https://bit.ly/realityez) regenerate
2123
```
22-
In the above command, you should replace `<domain>` with the domain that your server pretends to host. (default: yandex.com)
2324

24-
You can also replace `<install_path>` with the path that you want this script store its files there. (default: $HOME/reality)
25+
## Customization
26+
This script stores configurations in `$HOME/reality` and uses the TLS of `yandex.com`
2527

26-
After first run, a file named `config` will be created that stores all of your configuration.
27-
28-
## Output
29-
![image](https://user-images.githubusercontent.com/39186039/232563871-0140e10a-22b4-4653-9bc9-cdba519a8b41.png)
28+
You can edit these defaults by downloading the script in your server and edit first lines.

reality-ezpz.sh

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#!/bin/bash
22
set -e
3-
default_domain=yandex.com
4-
default_path="${HOME}/reality"
5-
domain="${1:-$default_domain}"
6-
path="${2:-$default_path}"
3+
4+
domain=yandex.com
5+
path="${HOME}/reality"
6+
image="teddysun/xray:1.8.0"
7+
78
if ! command -v qrencode > /dev/null 2>&1; then
89
echo "Updating repositories ..."
910
sudo apt update
@@ -14,9 +15,12 @@ if ! command -v docker > /dev/null 2>&1; then
1415
echo "Installing docker ..."
1516
curl -fsSL https://get.docker.com | sudo bash
1617
fi
18+
if [[ $1 == 'regenerate' ]]; then
19+
rm -rf "${path}"
20+
fi
1721
mkdir -p "${path}"
1822
if [[ ! -e "${path}/config" ]]; then
19-
key_pair=$(sudo docker run -q --rm teddysun/xray:1.8.0 xray x25519)
23+
key_pair=$(sudo docker run -q --rm ${image} xray x25519)
2024
cat >"${path}/config" <<EOF
2125
domain=${domain}
2226
server=$(curl -s ifconfig.io)
@@ -33,7 +37,7 @@ cat >"${path}/docker-compose.yml" <<EOF
3337
version: "3"
3438
services:
3539
xray:
36-
image: teddysun/xray:1.8.0
40+
image: ${image}
3741
ports:
3842
- 80:8080
3943
- 443:8443
@@ -175,4 +179,4 @@ echo "$config"
175179
echo ""
176180
echo "Or you can scan the QR code:"
177181
echo ""
178-
qrencode -t ansiutf8 $config
182+
qrencode -t ansiutf8 $config

0 commit comments

Comments
 (0)