linstrom/example_config.toml

45 lines
878 B
TOML
Raw Permalink Normal View History

2024-08-22 17:57:53 +00:00
[general]
2024-09-17 08:13:57 +00:00
protocol = "http"
domain = "localhost"
private_port = 8080
2024-08-22 17:57:53 +00:00
[ssl]
2024-09-17 08:13:57 +00:00
handle_ssl = false
2024-08-22 17:57:53 +00:00
[admin]
2024-09-17 08:13:57 +00:00
username = "server-admin"
first_time_setup_otp = "Example otp password"
profiling_password = "Example profiling password"
2024-09-17 08:13:57 +00:00
[webauthn]
display_name = "Linstrom"
2024-08-22 17:57:53 +00:00
[storage]
2024-09-17 08:13:57 +00:00
host = "localhost"
username = "linstrom"
password = "linstrom"
db_name = "linstrom"
port = 5432
ssl_mode = "disable"
time_zone = "Europe/Berlin"
max_in_memory_cache_size = 1000000
max_in_memory_cache_ttl = 5
2024-08-22 17:57:53 +00:00
[mail]
2024-09-17 08:13:57 +00:00
host = "localhost"
port = 587
username = "linstrom"
password = "linstrom"
[self]
server_actor_display_name = "Server actor"
server_display_name = "Linstrom"
[s3]
key_id = "Example key ID"
secret = "Example key secret"
region = "Example region"
endpoint = "http://localhost:3900"
2024-11-21 13:45:25 +00:00
use_ssl = false
bucket_name = "linstrom-bucket"