flounder.toml (view raw)
1# Used in HTML templates and titles
2SiteTitle="🐟flounder"
3
4# Include port if != 443
5Host="localhost:8443"
6
7# Folder containing subfolders for each user's files
8FilesDirectory="./files"
9LogFile="./flounder.log"
10
11# A wildcard TLS cert
12TLSCertFile="./server.crt"
13TLSKeyFile="./server.key"
14
15# Templates and static files
16# Everything in the static subfolder will be served at /
17TemplatesDirectory="./templates"
18DBFile="./flounder.db"
19
20MaxFileSize=128000 # 128 KB
21OkExtensions=["", ".gmi", ".txt", ".jpg", ".jpeg", ".gif", ".png", ".svg", ".webp", ".midi", ".json", ".csv", ".gemini", ".mp3", ".css", ".ttf", ".otf", ".woff", ".woff2"]
22