> ## 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.

# 게임 서버 구성 개요

> 타이틀의 게임 서버 엔티티에 대한 서버 측 키/값 및 파일 저장을 제공하는 PlayFab의 Game Server Configuration에 대해 알아봅니다.

Game Server Configuration은 타이틀의 `game_server` 엔티티로 범위가 지정된 데이터를 위한 서버 측 저장소를 제공합니다. Entity Objects 및 Entity Files API를 사용하여 게임 서버 동작을 구성하는 JSON 객체와 바이너리 파일을 저장하고 검색합니다.

## Game Server Configuration에 저장하는 항목

다음과 같은 데이터에는 Game Server Configuration을 사용하세요.

* 개별 플레이어가 아닌 게임 서버에 적용되는 데이터
* 서버 권한 게임 로직에서 읽어야 하는 데이터
* 매치 설정, 서버 매개변수, 플레이어별이 아닌 기능 플래그와 같은 구성

## 동작 방식

Game Configuration은 PlayFab의 다른 엔티티 데이터 저장소와 동일한 기본 API를 사용합니다.

* **Entity Objects** — [SetObjects](https://learn.microsoft.com/en-us/rest/api/playfab/data/object/set-objects)와 [GetObjects](https://learn.microsoft.com/en-us/rest/api/playfab/data/object/get-objects)를 사용하여 `game_server` 엔티티에 JSON 직렬화 가능한 작은 키/값 쌍을 저장합니다.
* **Entity Files** — [File API](https://learn.microsoft.com/en-us/rest/api/playfab/data/file)를 사용하여 `game_server` 엔티티에 더 큰 바이너리 또는 텍스트 파일을 저장합니다.

`game_server` 엔티티로 인증하려면 title 엔티티로서 [AuthenticateGameServerWithCustomId](https://learn.microsoft.com/en-us/rest/api/playfab/authentication/authentication/authenticate-game-server-with-custom-id)를 호출하세요.

## 관련 기능

모든 엔티티 저장소 기능의 비교는 [Entity Objects](/services/playfab/live-service-management/game-configuration/entities/entity-objects#related-features)를 참조하세요.

## Game Manager에서 보기

Game Manager의 엔티티 브라우저에서 `game_server` 엔티티를 선택하면 Game Configuration 데이터를 조회하고 관리할 수 있습니다.

## 함께 보기

* [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

- [LocalMultiplayerAgent 개요](/ko/services/playfab/multiplayer/servers/LocalMultiplayerAgent/local-multiplayer-agent-overview.md)
- [게임 서버 로컬 디버깅 및 PlayFab과의 통합](/ko/services/playfab/multiplayer/servers/locally-debugging-game-servers-and-integration-with-playfab.md)
- [포털 구성 개요](/ko/services/xbox-services/fundamentals/portal-config/live-portal-config-overview.md)
- [콘텐츠 테스트 애플리케이션(CTA) 스트림 구성 개요](/ko/build/core-features/common/game-streaming/game-streaming-content-test-application-stream-config.md)
- [Multiplayer Session Directory 개요](/ko/services/xbox-services/multiplayer/mpsd/live-mpsd-overview.md)
