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

# http_headers_* 세션 설정

> http_headers_* 자동 생성 그룹에 속한 ClickHouse 세션 설정입니다.

export const SettingsInfoBlock = ({type, default_value, changeable_without_restart}) => {
  return <div className="not-prose" style={{
    display: "flex",
    flexWrap: "wrap",
    alignItems: "baseline",
    columnGap: "0.5rem",
    rowGap: "0.125rem",
    margin: "0.375rem 0",
    fontSize: "0.8125rem",
    lineHeight: "1.125rem"
  }}>
      <div style={{
    fontWeight: 600,
    opacity: 0.72
  }}>유형</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{type}</div>
      <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>기본값</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{default_value}</div>
      {changeable_without_restart && <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>
          재시작 없이 변경 가능
        </div>}
      {changeable_without_restart && <div style={{
    overflowWrap: "anywhere"
  }}>
          {changeable_without_restart}
        </div>}
    </div>;
};

다음 설정은 [system.settings](/docs/ko/reference/system-tables/settings)에서 확인할 수 있으며 [원본](https://github.com/ClickHouse/ClickHouse/blob/master/src/Core/Settings.cpp)을 기반으로 자동 생성됩니다.

<div id="http_headers_progress_interval_ms">
  ## http\_headers\_progress\_interval\_ms
</div>

<SettingsInfoBlock type="UInt64" default_value="100" />

지정된 각 인터벌보다 더 짧은 간격으로는 HTTP 헤더 X-ClickHouse-Progress를 전송하지 않습니다.

<div id="http_headers_read_timeout">
  ## http\_headers\_read\_timeout
</div>

<SettingsInfoBlock type="Seconds" default_value="30" />

<VersionHistory rows={[{"id": "row-1","items": [{"label": "26.4"},{"label": "30"},{"label": "HTTP 요청 헤더를 읽는 전체 시간을 제한하는 새로운 설정으로, slowloris 공격을 방지합니다."}]}]} />

모든 HTTP 요청 헤더를 읽는 최대 시간을 초 단위로 지정합니다. 이는 각 읽기 작업별 timeout이 아니라 전체 헤더 parsing 단계에 적용되는 총 데드라인입니다. 클라이언트가 헤더 데이터를 아주 느리게 조금씩 전송해 연결을 계속 열린 상태로 유지하려는 slowloris 방식의 공격을 방지합니다.
