mirror of https://github.com/telemt/telemt.git
Merge pull request #658 from Dimasssss/patch-4
Add install.sh installation method to QUICK_START_GUIDE
This commit is contained in:
commit
0281cad564
|
|
@ -15,8 +15,8 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
**Telemt** is a fast, secure, and feature-rich server written in Rust: it fully implements the official Telegram proxy algo and adds many production-ready improvements such as:
|
**Telemt** is a fast, secure, and feature-rich server written in Rust: it fully implements the official Telegram proxy algo and adds many production-ready improvements such as:
|
||||||
- [ME Pool + Reader/Writer + Registry + Refill + Adaptive Floor + Trio-State + Generation Lifecycle](https://github.com/telemt/telemt/blob/main/docs/model/MODEL.en.md);
|
- [ME Pool + Reader/Writer + Registry + Refill + Adaptive Floor + Trio-State + Generation Lifecycle](https://github.com/telemt/telemt/blob/main/docs/Architecture/Model/MODEL.en.md);
|
||||||
- [Full-covered API w/ management](https://github.com/telemt/telemt/blob/main/docs/API.md);
|
- [Full-covered API w/ management](https://github.com/telemt/telemt/blob/main/docs/Architecture/API/API.md);
|
||||||
- Anti-Replay on Sliding Window;
|
- Anti-Replay on Sliding Window;
|
||||||
- Prometheus-format Metrics;
|
- Prometheus-format Metrics;
|
||||||
- TLS-Fronting and TCP-Splicing for masking from "prying" eyes.
|
- TLS-Fronting and TCP-Splicing for masking from "prying" eyes.
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,19 @@
|
||||||
|
# Very quick start
|
||||||
|
|
||||||
|
### One-command installation / update on re-run
|
||||||
|
```bash
|
||||||
|
curl -fsSL https://raw.githubusercontent.com/telemt/telemt/main/install.sh | sh
|
||||||
|
```
|
||||||
|
### Installing a specific version
|
||||||
|
```bash
|
||||||
|
curl -fsSL https://raw.githubusercontent.com/telemt/telemt/main/install.sh | sh -s -- 3.3.39
|
||||||
|
```
|
||||||
|
|
||||||
|
### Uninstall with full cleanup
|
||||||
|
```bash
|
||||||
|
curl -fsSL https://raw.githubusercontent.com/telemt/telemt/main/install.sh | sh -s -- purge
|
||||||
|
```
|
||||||
|
|
||||||
# Telemt via Systemd
|
# Telemt via Systemd
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,20 @@
|
||||||
# Telemt через Systemd
|
# Очень быстрый старт
|
||||||
|
|
||||||
|
### Установка одной командой / обновление при повторном запуске
|
||||||
|
```bash
|
||||||
|
curl -fsSL https://raw.githubusercontent.com/telemt/telemt/main/install.sh | sh
|
||||||
|
```
|
||||||
|
### Установка нужной версии
|
||||||
|
```bash
|
||||||
|
curl -fsSL https://raw.githubusercontent.com/telemt/telemt/main/install.sh | sh -s -- 3.3.39
|
||||||
|
```
|
||||||
|
|
||||||
|
### Удаление с полной очисткой
|
||||||
|
```bash
|
||||||
|
curl -fsSL https://raw.githubusercontent.com/telemt/telemt/main/install.sh | sh -s -- purge
|
||||||
|
```
|
||||||
|
|
||||||
|
# Telemt через Systemd вручную
|
||||||
|
|
||||||
## Установка
|
## Установка
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue