-
Notifications
You must be signed in to change notification settings - Fork 1
Hosting a server
Tom edited this page Jun 26, 2022
·
6 revisions
This is what the majority of people would need to set up their own Phinix server.
- A copy of PhinixServer.zip
- Somewhere to host the server
- (Mac/Linux users only) an installation of Mono
- Download and extract
PhinixServer.zip
to the place you want to host it from - Open the
PhinixServer
directory - (Optional) Open
server.conf
with a text editor and edit it to your liking
NOTE: The default server config should be fine for most people, but it is recommended you look through it anyway. - Forward port 16200/udp through your router and/or firewall
- Run
PhinixServer.exe
MAC/LINUX: Use Mono to start the server like this:mono PhinixServer.exe
- Close the server by typing
exit
and pressing enter
If you're the kind of person that likes containers, then we have a Docker image too!
- Somewhere to host the server
- An installation of Docker Engine
There are automated server builds available through Docker Hub for the master
and dev
branches, as well as each release.
- Forward port 16200/udp through your router/firewall
- Create a container with
docker run --tty --interactive --publish 16200:16200/udp thomotron/phinix:latest
NOTE: If you want to use a different branch or a specific version, replacephinix:latest
withphinix:<branch/release>
The server should start immediately once the container is set up.