2024-08-22 17:57:53 +00:00
|
|
|
[general]
|
2024-09-17 08:13:57 +00:00
|
|
|
# The protocol the server is reachable at from public
|
|
|
|
protocol = "http"
|
|
|
|
# The domain the server is reachable at from public
|
|
|
|
domain = "localhost"
|
|
|
|
# The subdomain where the server can be found. Can be not set
|
|
|
|
# subdomain = "example"
|
|
|
|
# The port under which the server itself runs. May not be the public port
|
|
|
|
private_port = 8080
|
|
|
|
# The port under which the server is accessible from public, usually 443 or 80
|
|
|
|
# public_port = 443
|
|
|
|
# Log file to write a machine readable version (json) of logs into. Can be not set
|
|
|
|
# structured_log_file = "log.txt"
|
2024-08-22 17:57:53 +00:00
|
|
|
|
|
|
|
[ssl]
|
2024-09-17 08:13:57 +00:00
|
|
|
# Whether the server should handle ssl itself
|
|
|
|
handle_ssl = false
|
|
|
|
# Whether to use letsEncrypt for obtaining ssl certificates
|
|
|
|
# use_lets_encrypt=true
|
|
|
|
# Location of the certificate file if not using lets encrypt
|
|
|
|
# certificate_file = "/path/to/certificate"
|
|
|
|
# Admin email adress to use for lets encrypt
|
|
|
|
# admin_mail = "admin@example.com"
|
2024-08-22 17:57:53 +00:00
|
|
|
|
|
|
|
[admin]
|
2024-09-17 08:13:57 +00:00
|
|
|
# The username of the root admin account
|
|
|
|
username = "server-admin"
|
|
|
|
# First time password for initial setup.
|
|
|
|
# Only used once after first run to verify that the person accessing the admin is supposed to do so
|
|
|
|
first_time_setup_otp = "Example otp password"
|
|
|
|
|
|
|
|
[webauthn]
|
|
|
|
# Display name of the server while registering with a passkey
|
|
|
|
display_name = "Linstrom"
|
2024-08-22 17:57:53 +00:00
|
|
|
|
|
|
|
[storage]
|
2024-09-17 08:13:57 +00:00
|
|
|
# Host domain or ip where the postgres db is located
|
|
|
|
host = "localhost"
|
|
|
|
# Username to log into the postgres db
|
|
|
|
username = "linstrom"
|
|
|
|
# Password for the given username
|
|
|
|
password = "linstrom"
|
|
|
|
# The name of the database inside postgres
|
|
|
|
db_name = "linstrom"
|
|
|
|
# The port where the postgres db is located
|
|
|
|
port = 5432
|
|
|
|
# The ssl mode to use while connecting to postgres. May be empty
|
|
|
|
ssl_mode = "disable"
|
|
|
|
# What timezone to use for times. May be empty
|
|
|
|
time_zone = "Europe/Berlin"
|
|
|
|
# The maximum size of the in memory cache, in bytes. 1_000_000 is one megabyte
|
|
|
|
max_in_memory_cache_size = 1_000_000
|
|
|
|
# The maximum time entries in the in-memory cache stay in there, in seconds
|
|
|
|
MaxInMemoryCacheTTL = 5
|
|
|
|
# The url to a redis server to use as secondary cache (after the internal in-memory one)
|
|
|
|
# redis_url = "some-redis-url"
|
|
|
|
# The maximum amount of seconds entries may stay in the redis cache
|
|
|
|
# max_redis_cache_ttl = 10
|
2024-08-22 17:57:53 +00:00
|
|
|
|
|
|
|
[mail]
|
2024-09-17 08:13:57 +00:00
|
|
|
# The ip or domain of the smtp server for sending mail
|
|
|
|
host = "localhost"
|
|
|
|
# The port under which the smtp server is reachable
|
|
|
|
port = 587
|
|
|
|
# The username to use for authentication with the smtp server
|
|
|
|
username = "linstrom"
|
|
|
|
# The password associated with the username
|
|
|
|
password = "linstrom"
|
|
|
|
# Overwrite the encryption to use while sending mails
|
|
|
|
# encryption_overwrite = "STARTTLS"
|
|
|
|
# Overwrite whether to keep connections to the smtp server alive for future use
|
|
|
|
# keep_alive_overwrite = true
|
|
|
|
# Overwrite the timeout duration for connecting to the smtp server
|
|
|
|
# connect_timeout_seconds_overwrite = 30
|
|
|
|
# Overwrite the timeout duration for sending a mail
|
|
|
|
# send_timeout_seconds_overwrite = 30
|
|
|
|
# Overwrite the location of email template files to use custom ones
|
|
|
|
# template_overwrite_directory = "/path/to/some/directory"
|