> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Game Server Configuration overview

> Learn about Game Server Configuration in PlayFab, which provides server-side key/value and file storage for your title's game server entities.

Game Server Configuration provides server-side storage for data scoped to your title's `game_server` entity. It uses the Entity Objects and Entity Files APIs to store and retrieve JSON objects and binary files that configure game server behavior.

## What belongs in Game Server Configuration

Use Game Server Configuration for data that:

* Applies to your game servers rather than individual players
* Needs to be read by server-authoritative game logic
* Includes configuration such as match settings, server parameters, or feature flags that aren't per-player

## How it works

Game Configuration uses the same underlying APIs as other entity data storage in PlayFab:

* **Entity Objects** — store small JSON-serializable key/value pairs on the `game_server` entity using [SetObjects](https://learn.microsoft.com/en-us/rest/api/playfab/data/object/set-objects) and [GetObjects](https://learn.microsoft.com/en-us/rest/api/playfab/data/object/get-objects)
* **Entity Files** — store larger binary or text files on the `game_server` entity using the [File APIs](https://learn.microsoft.com/en-us/rest/api/playfab/data/file)

To authenticate as a `game_server` entity, call [AuthenticateGameServerWithCustomId](https://learn.microsoft.com/en-us/rest/api/playfab/authentication/authentication/authenticate-game-server-with-custom-id) as a title entity.

## Related features

For a comparison of all entity storage features, see [Entity Objects](/services/playfab/live-service-management/game-configuration/entities/entity-objects#related-features).

## View in Game Manager

You can view and manage Game Configuration data in Game Manager under the entity browser by selecting a `game_server` entity.

## See also

* [Entity Programming Model](/services/playfab/live-service-management/game-configuration/entities)
* [Entity Objects](/services/playfab/live-service-management/game-configuration/entities/entity-objects)
* [Entity Files](/services/playfab/live-service-management/game-configuration/entities/entity-files)
* [Title Data](/services/playfab/live-service-management/game-configuration/titledata)


## Related topics

- [Game Server Configuration overview](/services/playfab/live-service-management/game-configuration/index.md)
- [Game Server Configuration の概要](/ja-jp/services/playfab/live-service-management/game-configuration/index.md)
- [Content Test Application (CTA) Stream Configuration Overview](/build/core-features/common/game-streaming/game-streaming-content-test-application-stream-config.md)
- [LocalMultiplayerAgent Overview](/services/playfab/multiplayer/servers/LocalMultiplayerAgent/local-multiplayer-agent-overview.md)
- [Portal configuration overview](/services/xbox-services/fundamentals/portal-config/live-portal-config-overview.md)
