2021-08-01 18:25:40 +08:00
|
|
|
# Phantasmal PSO Server
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
|
|
Put a config.json file in the directory where psoserv will run or pass
|
|
|
|
the `--config=/path/to/config.json` parameter to specify a configuration file.
|
|
|
|
|
|
|
|
## Proxy
|
|
|
|
|
|
|
|
Phantasmal PSO server can proxy any other PSO server. Below is a sample configuration for proxying a
|
2021-08-03 03:28:33 +08:00
|
|
|
locally running Tethealla server using the standard Tethealla client. Be sure to modify
|
|
|
|
tethealla.ini and set server port to 22000.
|
2021-08-01 18:25:40 +08:00
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"proxy": {
|
|
|
|
"bindAddress": "localhost",
|
|
|
|
"remoteAddress": "localhost",
|
|
|
|
"servers": [
|
|
|
|
{
|
|
|
|
"name": "patch_proxy",
|
|
|
|
"version": "PC",
|
|
|
|
"bindPort": 11000,
|
|
|
|
"remotePort": 21000
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "patch_data_proxy",
|
|
|
|
"version": "PC",
|
|
|
|
"bindPort": 11001,
|
|
|
|
"remotePort": 21001
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "login_proxy",
|
|
|
|
"version": "BB",
|
|
|
|
"bindPort": 12000,
|
|
|
|
"remotePort": 22000
|
|
|
|
},
|
|
|
|
{
|
2021-08-01 22:03:20 +08:00
|
|
|
"name": "character_proxy",
|
2021-08-01 18:25:40 +08:00
|
|
|
"version": "BB",
|
|
|
|
"bindPort": 12001,
|
|
|
|
"remotePort": 22001
|
2021-08-03 03:28:33 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "ship_proxy",
|
|
|
|
"version": "BB",
|
|
|
|
"bindPort": 13000,
|
|
|
|
"remotePort": 5278
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "block_1_proxy",
|
|
|
|
"version": "BB",
|
|
|
|
"bindPort": 13001,
|
|
|
|
"remotePort": 5279
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "block_2_proxy",
|
|
|
|
"version": "BB",
|
|
|
|
"bindPort": 13002,
|
|
|
|
"remotePort": 5280
|
2021-08-01 18:25:40 +08:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|