Skip to content

Commit

Permalink
readme: panel configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
kutovoys committed Sep 9, 2024
1 parent 0061dff commit b38c728
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,27 @@ Marzban Torrent Blocker is an application designed to block torrent usage by use
```
Unfortunately, this blocking only effectively handles about 20% of bittorrent traffic.

### Marzban Configuration

- On the server where the panel is hosted, create the folder `/var/lib/marzban-node`:

```bash
mkdir -p /var/lib/marzban-node
```

- Add a new volume to the `/opt/marzban/docker-compose.yml` file:

```yaml
volumes:
- /var/lib/marzban:/var/lib/marzban
- /var/lib/marzban-node:/var/lib/marzban-node #новый volume
```
- Restart the panel with the following command:
```bash
docker compose down --remove-orphans; docker compose up -d
```

### Node Configuration

Ensure that the volume is correctly mounted in `docker-compose.yml`:
Expand Down
24 changes: 23 additions & 1 deletion README_RU.md → README.ru.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Marzban Torrent Blocker

[English](https://github.com/kutovoys/marzban-torrent-blocker) | [Russian](https://github.com/kutovoys/marzban-torrent-blocker/blob/main/README_RU.md)
[![en](https://img.shields.io/badge/lang-en-red)](https://github.com/kutovoys/marzban-torrent-blocker/blob/main/README.md)
[![ru](https://img.shields.io/badge/lang-ru-blue)](https://github.com/kutovoys/marzban-torrent-blocker/blob/main/README.ru.md)

Marzban Torrent Blocker — это приложение для блокировки использования торрентов пользователями панели [Marzban](https://github.com/Gozargah/Marzban). Приложение анализирует логи, обнаруживает использование торрентов и временно блокирует пользователя, отправляя уведомления в Telegram администратору и, опционально, пользователю.

Expand Down Expand Up @@ -51,6 +52,27 @@ Marzban Torrent Blocker — это приложение для блокиров
```
К сожалению, эта блокировка эффективно блокирует только около 20% трафика bittorrent.

### Конфигурация Marzban

- На сервере, где находится панель создайте папку `/var/lib/marzban-node`:

```bash
mkdir -p /var/lib/marzban-node
```

- Добавьте новый volume в файле `/opt/marzban/docker-compose.yml`:

```yaml
volumes:
- /var/lib/marzban:/var/lib/marzban
- /var/lib/marzban-node:/var/lib/marzban-node #новый volume
```
- Перезапустите панель командой:
```bash
docker compose down --remove-orphans; docker compose up -d
```

### Конфигурация нод

Проверьте чтобы в docker-compose.yml был правильно смонтированный volume:
Expand Down

0 comments on commit b38c728

Please sign in to comment.