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.
|
; Default Glimpse server configuration.
|
||||||
|
|
||||||
[Server]
|
[Server]
|
||||||
|
; IP address glimpse will use.
|
||||||
#bindAddr = "0.0.0.0"
|
#bindAddr = "0.0.0.0"
|
||||||
|
; Port that glimpse will use.
|
||||||
#port = "8080"
|
#port = "8080"
|
||||||
#reusePort = "true"
|
#reusePort = "true"
|
||||||
|
; Currently unused.
|
||||||
#staticDir = "./public/"
|
#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 = ""
|
#appName = ""
|
||||||
|
|
||||||
[Database]
|
[Database]
|
||||||
; 2 database types are supported PostgreSQL or SQLite.
|
; 2 database types are supported PostgreSQL or SQLite.
|
||||||
#db = postgresql
|
#db = postgresql
|
||||||
|
; IP address of database.
|
||||||
#dbHost = "0.0.0.0"
|
#dbHost = "0.0.0.0"
|
||||||
#dbUser = "user"
|
; Database user.
|
||||||
|
#dbUser = "postgres"
|
||||||
|
; Database Password.
|
||||||
#dbPassword = "postgresql"
|
#dbPassword = "postgresql"
|
||||||
; I have no idea what this is for.
|
; I have no idea what this is for.
|
||||||
#dbDatabase = ""
|
#dbDatabase = ""
|
||||||
|
|
||||||
[General]
|
[General]
|
||||||
|
; This is the path to the directory which contains all users' uploaded files.
|
||||||
#uploadDir = "./uploads/"
|
#uploadDir = "./uploads/"
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Add table
Reference in a new issue