mirror of
https://github.com/h44z/wg-portal
synced 2025-02-26 05:49:14 +00:00
13 lines
444 B
Go
13 lines
444 B
Go
|
package config
|
||
|
|
||
|
type WebConfig struct {
|
||
|
RequestLogging bool `yaml:"request_logging"`
|
||
|
ExternalUrl string `yaml:"external_url"`
|
||
|
ListeningAddress string `yaml:"listening_address"`
|
||
|
SessionIdentifier string `yaml:"session_identifier"`
|
||
|
SessionSecret string `yaml:"session_secret"`
|
||
|
CsrfSecret string `yaml:"csrf_secret"`
|
||
|
SiteTitle string `yaml:"site_title"`
|
||
|
SiteCompanyName string `yaml:"site_company_name"`
|
||
|
}
|