Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct {
Proxy struct {
DNS struct {
Enabled bool `json:"enabled"`
Listener string `json:"listener"`
} `json:"dns"`
SSL struct {
Enabled bool `json:"enabled"`
Listener string `json:"listener"`
Key string `json:"key"`
Cert string `json:"cert"`
} `json:"ssl"`
HTTP struct {
Enabled bool `json:"enabled"`
Listener string `json:"listener"`
} `json:"http"`
} `json:"proxy"`
Admin struct {
Listener string `json:"listener"`
Key string `json:"key"`
Cert string `json:"cert"`
} `json:"admin"`
JWTKey string `json:"jwt_key"`
BoltDBFile string `json:"bolt_db_file"`
}
Config holds all the required information for server.
Click to show internal directories.
Click to hide internal directories.