dispatch/config.default.toml

103 lines
2.4 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
2020-06-16 09:26:07 +00:00
# Run ident daemon on port 113
identd = true
# Hex encode the users IP and use it as the ident
hexIP = false
2020-06-15 23:22:23 +00:00
# Automatically reply to common CTCP messages
auto_ctcp = true
# Verify the certificate chain presented by the IRC server, if this check fails
# the user will be able to choose to still connect
verify_certificates = true
2016-01-25 00:01:37 +00:00
# Defaults for the client connect form
2016-01-14 06:08:15 +00:00
[defaults]
name = "libera.chat"
host = "irc.libera.chat"
2018-05-16 03:02:48 +00:00
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
]
2020-05-23 06:05:37 +00:00
server_password = ""
2016-01-25 00:01:37 +00:00
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 = ""
2020-05-20 05:21:12 +00:00
[dcc]
# Receive files through DCC, the user gets to choose if they want to accept the file,
2020-06-15 23:22:23 +00:00
# the file download then gets proxied to the user
2020-05-20 05:21:12 +00:00
enabled = true
[dcc.autoget]
2020-06-15 23:22:23 +00:00
# Instead of proxying the file download directly to the user, dispatch automatically downloads
2020-05-20 05:21:12 +00:00
# DCC files and sends a download link to the user once its done
enabled = false
# Delete the file after the user has downloaded it once
delete = true
# Delete the file after a certain time period of inactivity, not implemented yet
delete_after = "30m"
2020-06-16 01:04:27 +00:00
[proxy]
# Dispatch will make all outgoing connections through the specified proxy when enabled
enabled = false
protocol = "socks5"
host = "127.0.0.1"
port = 1080
username = ""
password = ""
2020-06-15 23:22:23 +00:00
# HTTP 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"