Guidance Sheet

DayZ mod website bridge setup

This guide is for server owners who bought a DayZ mod from the store. The client PBO and server-side files are downloaded from your profile. Products marked as IP required must have a server IP saved before the bridge validates the mod.

1. Download both file versions

  • Open your profile after payment.
  • Download the Client PBO and install it like a normal client-side mod.
  • Download the Server-side package and install it on your server only.

2. Add your server IP on your profile

Open the purchase on your profile, find Server IP licenses, and save your server IP or IP:port. Extra IPs can be added with the plus button for £2.50 each.

Important: extra ips must be for your own servers and not for new clients all ips are checked and managed internally.

3. Configure the server-side bridge

In the server-side config shipped with the mod, set these values:

WebsiteBridgeUrl = "https://customdayzservices.com/api/store/license";
ProductSlug = "your-product-slug";
ServerIp = "123.45.67.89:2302";
// Optional if DAYZ_BRIDGE_TOKEN is configured on the website:
BridgeToken = "";

4. What the bridge checks

The server-side mod calls the website bridge with the product slug and server IP. The website returns whether there is an active paid purchase with a matching active IP license.

GET /api/store/license?productSlug=your-product-slug&serverIp=123.45.67.89:2302

Response:
{
  "valid": true,
  "productSlug": "your-product-slug",
  "serverIp": "123.45.67.89:2302",
  "checkedAt": "..."
}

5. Troubleshooting

  • If the response is invalid, make sure Stripe has completed and the purchase shows as paid on your profile.
  • Check the IP exactly matches the IP saved in your profile.
  • Make sure the product slug in the server config matches the Store product slug in the admin panel.
  • If a bridge token is enabled, make sure the server-side config sends the same token in the X-Bridge-Token header.
Open your profile
DayZ Mod Website Bridge Setup | CustomDayZServices