File: //opt/relica/config.toml
###
# Relica Client Configuration
#
# STABLE
#
# The port on which the client should expose its API,
# and the port to which browsers must navigate for UI.
# This endpoint is confined to the localhost/loopback
# interface only because it has no authentication nor
# TLS. If you need to access this endpoint remotely,
# set up a simple reverse proxy with TLS and auth,
# for example, using Caddy: https://caddyserver.com.
# Default: 1201
listen_port = 1201
# The path to the web UI. If a relative path, then it
# will be relative to the executable file.
# Windows default: "webui"
# macOS default: "../Resources/webui"
# Linux default: "../webui"
web_root = "../webui"
# The address to use to contact the backend API.
backend_addr = "https://central.relica.net"
# The policy for automatic upgrades of Relica.
# Possible values:
#
# prerelease - Use the latest builds, even if buggy
# stable - Use the latest stable builds, including
# new major versions
# minor - Minor updates and patches only (no breaking
# changes)
# disabled - No automatic upgrades
#
# Default: stable
upgrade_policy = "stable"
# Whether to enable IPv6 when connecting to Relica's
# servers. Until widespread IPv6 support is rolled out
# on consumer ISP networks, we recommend keeping this
# disabled to maximize the reliability of peer backups.
# Default: false
ipv6 = false