Getting Started
This section applies to both the normal installation as well as the Docker (Compose) installation.
To connect to the server, you need to configure and install a region file on this website.
Among Us connects to the server using two network services: the (TCP) HTTP service points Among Us to the UDP service, then the UDP service hosts the actual game traffic.
Because of this, Impostor uses port 22023 using both the TCP and UDP protocols.
To connect to your Among Us version from another PC, you need to set up a HTTP reverse proxy to support HTTPS.
If you're just running a version of Impostor for testing Setup instructions for this are in the HTTP Server documentation.
If you want to test if your Among Us HTTP server is working, open http://localhost:22023
(assuming you're using the default settings, change the IP and port respectively) in a browser.
Depending on your host you may also need to port forward Impostor to the internet or pass Impostor traffic by your firewall.
Port 22023 UDP needs to be accessible for everyone that wants to play on the server, then you also need to portforward your HTTP reverse proxy or port 22023 TCP if you don't use a reverse proxy.
As port forwarding changes per host or router configuration, port forwarding is not covered by this guide.
Normal installation
- Install .NET 8.0.
We recommend either the ASP.NET Core Runtime or the SDK.
The SDK is necessary in case you want to develop Impostor or Impostor plugins. - Download the latest release or the latest CI build.
Note that Impostor is built for multiple CPU-architectures and operating systems, you most likely want the x64 version, unless you are running on a Raspberry Pi or another device/VPS with an Arm processor. - Extract the zip.
- Modify
config.json
to your liking.
Documentation can be found here.
You need to at least changePublicIp
to the address people will connect to your server to. - Run
Impostor.Server
(Linux/macOS) orImpostor.Server.exe
(Windows). - Set up a reverse proxy to support HTTPS, so you can connect to your server from another device.
See reverse proxy configuration - (OPTIONAL - Linux) Configure a systemd definition file and enable the service to start on boot, see systemd configuration
Using Docker
Docker is a program that allows you to run programs like Impostor in a container.
After installing Docker, you can just start a Docker container with docker run
:
docker run -p 127.0.0.1:22023:22023/tcp -p 22023:22023/udp -e IMPOSTOR_Server__PublicIp=your.public.ip.here aeonlucid/impostor:nightly
Please replace your.public.ip.here
with the public IP address of your server.
This is the address Among Us will try to reach your server at.
To configure the docker container, either use environment variables or mount config.json in your container.
Using Docker Compose
Docker Compose allows you to start a Docker container using a predefined configuration.
This is an example configuration you can continue on:
version: '3.4'
services:
impostor:
image: aeonlucid/impostor:nightly
container_name: impostor
ports:
- 127.0.0.1:22023:22023/tcp # Set up your own reverse proxy to terminate HTTPS
- 22023:22023/udp
environment: # Either configure Impostor using environment variables or mount config.json in your container
- IMPOSTOR_Server__PublicIp=your.public.ip.here
volumes:
- /path/to/local/config.json:/app/config.json # Mount config.json
- /path/to/local/plugins:/app/plugins # Only needed if using plugins
- /path/to/local/libraries:/app/libraries # Only needed if using external libraries (some plugins may need this)