released v1.3.5

This commit is contained in:
Pari Malam
2026-06-27 11:04:23 +08:00
parent af0ba287c3
commit 9682dac163
3 changed files with 241 additions and 166 deletions
+34
View File
@@ -4,6 +4,40 @@
---
## Install (one-liner)
```bash
# With curl (requires root)
sudo sh -c "$(curl -fsSL https://raw.githubusercontent.com/Ap0dexMe0/o11pro-unpacked/main/install.sh)"
# With wget (requires root)
sudo sh -c "$(wget -O- https://raw.githubusercontent.com/Ap0dexMe0/o11pro-unpacked/main/install.sh)"
# With fetch / BSD (requires root)
sudo sh -c "$(fetch -o - https://raw.githubusercontent.com/Ap0dexMe0/o11pro-unpacked/main/install.sh)"
```
### Install options (via environment variables)
| Variable | Description | Default |
| --------------- | ----------------------------- | -------------- |
| `O11PRO_DIR` | Install directory | `/root/o11pro-unpacked` |
| `O11PRO_PORT` | Server port | `1337` |
| `O11PRO_VERBOSE`| Log level (05) | `2` |
| `O11PRO_USER` | Admin username | auto-generated |
| `O11PRO_PASS` | Admin password | auto-generated |
| `O11PRO_BRANCH` | Git branch to clone | `main` |
| `O11PRO_YES` | Skip confirm prompts | `0` |
Example with custom options:
```bash
O11PRO_PORT=8080 O11PRO_YES=1 \
sudo sh -c "$(curl -fsSL https://raw.githubusercontent.com/Ap0dexMe0/o11pro-unpacked/main/install.sh)"
```
---
## Further Reading
| Document | Description |