21 lines
381 B
TOML
21 lines
381 B
TOML
[server]
|
|
host = "0.0.0.0"
|
|
port = 5000
|
|
|
|
[directories]
|
|
upload = "/app/uploads"
|
|
thumbnail = "/app/thumbnails"
|
|
|
|
[admin]
|
|
# Change this password!
|
|
password = "changeme"
|
|
|
|
[appearance]
|
|
accent_color = "#007bff"
|
|
site_title = "Spectra"
|
|
|
|
[security]
|
|
# Add these security settings
|
|
max_upload_size_mb = 80
|
|
allowed_extensions = ["jpg", "jpeg", "png", "gif"]
|
|
rate_limit = 100 # requests per minute |