Docs / Game Servers / How to Set Up an Assetto Corsa Server

How to Set Up an Assetto Corsa Server

By Admin · Mar 1, 2026 · Updated Apr 23, 2026 · 28 views · 1 min read

Setting Up an Assetto Corsa Server

Assetto Corsa is a realistic racing simulator with a strong online community. Hosting a dedicated server on your Breeze lets you run custom track and car combinations, practice sessions, and organized races with full control over rules and conditions.

Install the Server

steamcmd +login anonymous +force_install_dir /home/steam/assetto +app_update 302550 validate +quit

Server Configuration

Edit cfg/server_cfg.ini:

[SERVER]
NAME=My Breeze Racing Server
PORT=9600
HTTP_PORT=8081
MAX_CLIENTS=24
TRACK=vallelunga
CARS=ks_ferrari_488_gt3;ks_porsche_911_gt3_r;ks_mercedes_amg_gt3
RACE_LAPS=15
QUALIFY_MAX_WAIT_PERC=120
PASSWORD=your_password

Entry List

Define car slots in cfg/entry_list.ini:

[CAR_0]
MODEL=ks_ferrari_488_gt3
SKIN=rosso_corsa
BALLAST=0
RESTRICTOR=0

[CAR_1]
MODEL=ks_porsche_911_gt3_r
SKIN=white_green
BALLAST=0
RESTRICTOR=0

Open Ports

sudo ufw allow 9600/tcp
sudo ufw allow 9600/udp
sudo ufw allow 8081/tcp

Launch the Server

cd /home/steam/assetto
./acServer

The HTTP port provides a web-based status page showing connected drivers, lap times, and session information. For custom content, place mod tracks and cars in their respective directories and update the configuration accordingly.

Was this article helpful?