2024-02-22 07:09:31 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
type CoreConfig struct {
|
|
|
|
DB DatabaseConfig `mapstructure:"db"`
|
|
|
|
Domain string `mapstructure:"domain"`
|
2024-02-26 12:32:46 +00:00
|
|
|
PortalName string `mapstructure:"portal_name"`
|
2024-02-22 07:09:31 +00:00
|
|
|
ExternalPort uint `mapstructure:"external_port"`
|
|
|
|
Identity string `mapstructure:"identity"`
|
|
|
|
Log LogConfig `mapstructure:"log"`
|
|
|
|
Port uint `mapstructure:"port"`
|
2024-02-25 07:10:41 +00:00
|
|
|
PostUploadLimit uint64 `mapstructure:"post_upload_limit"`
|
2024-02-22 07:09:31 +00:00
|
|
|
Sia SiaConfig `mapstructure:"sia"`
|
|
|
|
Storage StorageConfig `mapstructure:"storage"`
|
|
|
|
Protocols []string `mapstructure:"protocols"`
|
2024-02-26 12:30:53 +00:00
|
|
|
Mail MailConfig `mapstructure:"mail"`
|
2024-02-22 07:09:31 +00:00
|
|
|
}
|