2021-08-01 18:25:40 +08:00
|
|
|
# Phantasmal PSO Server
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
2021-08-04 21:27:47 +08:00
|
|
|
Put a psoserv.conf file in the directory where psoserv will run or pass
|
|
|
|
the `--config=/path/to/file.conf` parameter to specify a configuration file.
|
|
|
|
The [HOCON](https://github.com/lightbend/config#using-hocon-the-json-superset) format is used to
|
|
|
|
describe configurations.
|
2021-08-01 18:25:40 +08:00
|
|
|
|
|
|
|
## 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
|
|
|
|
2021-08-04 21:27:47 +08:00
|
|
|
```hocon
|
|
|
|
proxy: {
|
|
|
|
# Default local address used by all proxies, can be overwritten per proxy.
|
|
|
|
bindAddress: localhost
|
|
|
|
# Default address of the remote server used by all proxies, can be overwritten per proxy.
|
|
|
|
remoteAddress: localhost
|
|
|
|
# One server configuration per address/port pair that needs to be proxied.
|
|
|
|
servers: [
|
|
|
|
{
|
|
|
|
# Name used for e.g. the logs.
|
|
|
|
name: patch_proxy
|
|
|
|
# PC or BB, determines the message format encryption cipher used.
|
|
|
|
version: PC
|
|
|
|
# Local port the proxy will listen on.
|
|
|
|
bindPort: 11000
|
|
|
|
# Remote port the proxy will connect to.
|
|
|
|
remotePort: 21000
|
2021-08-01 18:25:40 +08:00
|
|
|
}
|
2021-08-04 21:27:47 +08:00
|
|
|
{
|
|
|
|
name: patch_data_proxy
|
|
|
|
version: PC
|
|
|
|
bindPort: 11001
|
|
|
|
remotePort: 21001
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name: login_proxy
|
|
|
|
version: BB
|
|
|
|
bindPort: 12000
|
|
|
|
remotePort: 22000
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name: character_proxy
|
|
|
|
version: BB
|
|
|
|
bindPort: 12001
|
|
|
|
remotePort: 22001
|
|
|
|
}
|
|
|
|
{
|
|
|
|
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
|
|
|
}
|
|
|
|
```
|