This commit is contained in:
array-in-a-matrix 2024-08-01 22:29:40 -04:00
parent aec8fef803
commit 13c6199f73

View file

@ -3,21 +3,30 @@ const defaultConf* =
; Default Glimpse server configuration.
[Server]
; IP address glimpse will use.
#bindAddr = "0.0.0.0"
; Port that glimpse will use.
#port = "8080"
#reusePort = "true"
; Currently unused.
#staticDir = "./public/"
; What URL path glimpse will run under. If the value of appName is set
; to '<value>', then glimpse will be accessiable under 'http:<IP>:<PORT>/value/...'.
#appName = ""
[Database]
; 2 database types are supported PostgreSQL or SQLite.
#db = postgresql
; IP address of database.
#dbHost = "0.0.0.0"
#dbUser = "user"
; Database user.
#dbUser = "postgres"
; Database Password.
#dbPassword = "postgresql"
; I have no idea what this is for.
#dbDatabase = ""
[General]
; This is the path to the directory which contains all users' uploaded files.
#uploadDir = "./uploads/"
"""