mirror of
https://github.com/lkddi/Xboard.git
synced 2026-04-28 06:47:24 +08:00
docs: update docs
This commit is contained in:
@@ -52,7 +52,6 @@ docker compose up -d
|
|||||||
- [Migrate from v2board dev](./docs/en/migration/v2board-dev.md)
|
- [Migrate from v2board dev](./docs/en/migration/v2board-dev.md)
|
||||||
- [Migrate from v2board 1.7.4](./docs/en/migration/v2board-1.7.4.md)
|
- [Migrate from v2board 1.7.4](./docs/en/migration/v2board-1.7.4.md)
|
||||||
- [Migrate from v2board 1.7.3](./docs/en/migration/v2board-1.7.3.md)
|
- [Migrate from v2board 1.7.3](./docs/en/migration/v2board-1.7.3.md)
|
||||||
- [Migrate from v2board wyx2685](./docs/en/migration/v2board-wyx2685.md)
|
|
||||||
|
|
||||||
## 🛠️ Tech Stack
|
## 🛠️ Tech Stack
|
||||||
|
|
||||||
|
|||||||
@@ -1,68 +0,0 @@
|
|||||||
# V2board wyx2685 Migration Guide
|
|
||||||
|
|
||||||
This guide explains how to migrate from V2board wyx2685 version (2023/11/17) to Xboard.
|
|
||||||
|
|
||||||
⚠️ Important migration notes:
|
|
||||||
- Device limitation feature will be lost
|
|
||||||
- Special Trojan features will be lost
|
|
||||||
- Hysteria2 routes need to be reconfigured
|
|
||||||
|
|
||||||
### 1. Database Changes Overview
|
|
||||||
|
|
||||||
- `v2_plan` table:
|
|
||||||
- Removed `device_limit` (nullable)
|
|
||||||
|
|
||||||
- `v2_server_hysteria` table:
|
|
||||||
- Removed `version`
|
|
||||||
- Removed `obfs`
|
|
||||||
- Removed `obfs_password`
|
|
||||||
|
|
||||||
- `v2_server_trojan` table:
|
|
||||||
- Removed `network`
|
|
||||||
- Removed `network_settings`
|
|
||||||
|
|
||||||
- `v2_user` table:
|
|
||||||
- Removed `device_limit`
|
|
||||||
|
|
||||||
### 2. Prerequisites
|
|
||||||
|
|
||||||
⚠️ Please complete the basic Xboard installation first (SQLite not supported):
|
|
||||||
- [Docker Compose Deployment](../installation/docker-compose.md)
|
|
||||||
- [aaPanel + Docker Deployment](../installation/aapanel-docker.md)
|
|
||||||
- [aaPanel Deployment](../installation/aapanel.md)
|
|
||||||
|
|
||||||
### 3. Migration Steps
|
|
||||||
|
|
||||||
#### Docker Environment
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# 1. Stop services
|
|
||||||
docker compose down
|
|
||||||
|
|
||||||
# 2. Clear database
|
|
||||||
docker compose run -it --rm web php artisan db:wipe
|
|
||||||
|
|
||||||
# 3. Import old database (Important)
|
|
||||||
# Please manually import the V2board wyx2685 database
|
|
||||||
|
|
||||||
# 4. Execute migration
|
|
||||||
docker compose run -it --rm web php artisan migratefromv2b wyx2685
|
|
||||||
```
|
|
||||||
|
|
||||||
#### aaPanel Environment
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# 1. Clear database
|
|
||||||
php artisan db:wipe
|
|
||||||
|
|
||||||
# 2. Import old database (Important)
|
|
||||||
# Please manually import the V2board wyx2685 database
|
|
||||||
|
|
||||||
# 3. Execute migration
|
|
||||||
php artisan migratefromv2b wyx2685
|
|
||||||
```
|
|
||||||
|
|
||||||
### 4. Configuration Migration
|
|
||||||
|
|
||||||
After completing the data migration, you need to migrate the configuration file:
|
|
||||||
- [Configuration Migration Guide](./config.md)
|
|
||||||
Reference in New Issue
Block a user