dispatch/config.default.toml

76 lines
1.5 KiB
TOML
Raw Normal View History

# IP address to listen on, leave empty to listen on anything
address = ""
2016-01-04 18:26:32 +00:00
port = 80
# Hex encode the users IP and use it as the ident
hexIP = false
verify_certificates = true
2020-05-19 08:48:54 +00:00
# Automatically download files from DCC SENDs
autoget = false
2016-01-25 00:01:37 +00:00
# Defaults for the client connect form
2016-01-14 06:08:15 +00:00
[defaults]
name = "freenode"
2018-05-16 03:02:48 +00:00
host = "chat.freenode.net"
port = 6697
2016-01-14 06:08:15 +00:00
channels = [
2020-05-19 08:48:54 +00:00
"#dispatch"
2016-01-14 06:08:15 +00:00
]
2016-01-25 00:01:37 +00:00
password = ""
ssl = true
# Only allow a nick to be filled in
readonly = false
# Show server and channel info when readonly is enabled
show_details = false
2016-01-14 06:08:15 +00:00
2016-01-04 18:26:32 +00:00
[https]
enabled = true
2016-01-04 18:26:32 +00:00
port = 443
# Path to your cert and private key if you are not using
# the Let's Encrypt integration
cert = ""
key = ""
[letsencrypt]
# Your domain or subdomain, if not set a certificate will be
# fetched for whatever domain dispatch gets accessed through
2016-01-04 18:26:32 +00:00
domain = ""
# An email address lets you recover your accounts private key
email = ""
# Not implemented
[auth]
# Allow usage without being logged in, all channels and settings get
# transferred when logging in or registering
anonymous = true
# Enable username/password login
login = true
# Enable username/password registration
registration = true
[auth.providers.github]
2016-01-04 18:26:32 +00:00
key = ""
secret = ""
[auth.providers.facebook]
2016-01-04 18:26:32 +00:00
key = ""
secret = ""
[auth.providers.google]
2016-01-04 18:26:32 +00:00
key = ""
secret = ""
[auth.providers.twitter]
2016-01-04 18:26:32 +00:00
key = ""
secret = ""
# Strict-Transport-Security
[https.hsts]
enabled = false
max_age = 31536000
include_subdomains = false
preload = false
2018-12-20 10:51:31 +00:00
# Add your own HTTP headers to the index page
[headers]
# X-Example = "Rainbows"