mirror of
https://github.com/glimpse-app/server.git
synced 2025-04-02 10:52:45 -04:00
comments
This commit is contained in:
parent
aec8fef803
commit
13c6199f73
1 changed files with 10 additions and 1 deletions
|
@ -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/"
|
||||
"""
|
||||
|
|
Loading…
Add table
Reference in a new issue