

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# 구성 파일
<a name="configuration-file"></a>

구성 파일은 일부 구성 옵션 및 자격 증명을 지정하는 세 번째 방법입니다. 기본적으로 `/conf/dcvsmcli.conf`의 zip 파일에 제공됩니다.

사용자는 명령줄에서 구성 파일의 경로를 지정할 수 있습니다. 사용자가 이를 명시적으로 지정하지 않으면 운영 체제에 따라 기본적으로 특정 폴더에서 구성 파일을 읽습니다.
+ Unix 기반 시스템: `$XDG_CONFIG_HOME/dcvsmcli.conf`
+ Windows 시스템: `%UserProfile%\dcvsmcli.conf`

구성 파일을 찾을 수 없는 경우 CLI는 zip 파일과 함께 제공된 `/conf/dcvsmcli.conf` 경로에서 파일을 읽습니다. 구성 파일의 구조는 다음과 같습니다.

```
[output]
# The formatting style for command output.
output-format = json

# Turn on debug logging
debug = true

[security]
# Disable SSL certificates verification.
no-verify-ssl = true

# CA certificate bundle to use when verifying SSL certificates.
ca-bundle = ca-bundle.pem

[authentication]
# hostname of the authentication server used to request the token
auth-server-url = https://broker-host:broker-port/oauth2/token?grant_type=client_credentials

# The client ID
client-id = username

# The client password
client-password = password

[broker]
# hostname or IP of the broker
url = https://broker-host:broker-port
```