Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

[proxy]

Proxy settings for Halloy.

  1. http
  2. socks5
  3. tor

[proxy.http]

Http proxy settings.

host

Proxy host to connect to.

# Type: string
# Values: any string
# Default: not set

# Required

[proxy.http]
host = "192.168.1.100"

port

Proxy port to connect on.

# Type: integer
# Values: any positive integer
# Default: not set

# Required

[proxy.http]
port = 1080

username

Proxy username.

# Type: string
# Values: any string
# Default: not set

# Optional

[proxy.http]
username = "username"

password

Proxy password.

# Type: string
# Values: any string
# Default: not set

# Optional

[proxy.http]
password = "password"

Example

[proxy.http]
host = "192.168.1.100"
port = 1080
username = "username"
password = "password"

[proxy.socks5]

Socks5 proxy settings.

host

Proxy host to connect to.

# Type: string
# Values: any string
# Default: not set

# Required

[proxy.socks5]
host = "192.168.1.100"

port

Proxy port to connect on.

# Type: integer
# Values: any positive integer
# Default: not set

# Required

[proxy.socks5]
port = 1080

username

Proxy username.

# Type: string
# Values: any string
# Default: not set

# Optional

[proxy.socks5]
username = "username"

password

Proxy password.

# Type: string
# Values: any string
# Default: not set

# Optional

[proxy.socks5]
password = "password"

Example

[proxy.socks5]
host = "192.168.1.100"
port = 1080
username = "username"
password = "password"

[proxy.tor]

Tor proxy settings. Utilizes Arti to integrate Tor support directly into Halloy. It accepts no further configuration.

Note:

  • Does not integrate into a pre-existing Tor setup. To utilize an existing Tor daemon, use [proxy.socks5] instead.
  • Tor support is not included by default. You must build Halloy with the tor feature to use this proxy type. See Optional Features for build instructions.

Example

[proxy.tor]