> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-postgresql-tls-support.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# interserver_https_* server settings

> ClickHouse server settings in the interserver_https_* generated group.

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
  }}>Type</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{type}</div>
      <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>Default</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{default_value}</div>
      {changeable_without_restart && <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>
          Changeable without restart
        </div>}
      {changeable_without_restart && <div style={{
    overflowWrap: "anywhere"
  }}>
          {changeable_without_restart}
        </div>}
    </div>;
};

These settings configure the ClickHouse server and are autogenerated from ClickHouse source.

<h2 id="interserver_https_host">
  interserver\_https\_host
</h2>

<SettingsInfoBlock type="String" default_value="" changeable_without_restart="No" />

Similar to `<interserver_http_host>`, except that this hostname can be used by other servers to access this server over `<HTTPS>`.

**Example**

```xml theme={null}
<interserver_https_host>example.clickhouse.com</interserver_https_host>
```

<h2 id="interserver_https_port">
  interserver\_https\_port
</h2>

<SettingsInfoBlock type="UInt64" default_value="0" changeable_without_restart="No" />

Port for exchanging data between ClickHouse servers over `<HTTPS>`.

**Example**

```xml theme={null}
<interserver_https_port>9010</interserver_https_port>
```
