mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-19 20:32:35 +02:00
59 lines
1.3 KiB
Go
59 lines
1.3 KiB
Go
package common
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
ConnectionTimeout = 5 * time.Second
|
|
DialTimeout = 3 * time.Second
|
|
KeepAlive = 60 * time.Second
|
|
)
|
|
|
|
const (
|
|
ProxyHTTPAddr = ":80"
|
|
ProxyHTTPSAddr = ":443"
|
|
APIHTTPAddr = ":8080"
|
|
MetricsHTTPAddr = ":8081"
|
|
)
|
|
|
|
// file, folder structure
|
|
|
|
const (
|
|
DotEnvPath = ".env"
|
|
DotEnvExamplePath = ".env.example"
|
|
|
|
ConfigBasePath = "config"
|
|
ConfigFileName = "config.yml"
|
|
ConfigExampleFileName = "config.example.yml"
|
|
ConfigPath = ConfigBasePath + "/" + ConfigFileName
|
|
HomepageJSONConfigPath = ConfigBasePath + "/.homepage.json"
|
|
IconListCachePath = ConfigBasePath + "/.icon_list_cache.json"
|
|
IconCachePath = ConfigBasePath + "/.icon_cache.json"
|
|
|
|
MiddlewareComposeBasePath = ConfigBasePath + "/middlewares"
|
|
|
|
ComposeFileName = "compose.yml"
|
|
ComposeExampleFileName = "compose.example.yml"
|
|
|
|
ErrorPagesBasePath = "error_pages"
|
|
)
|
|
|
|
var RequiredDirectories = []string{
|
|
ConfigBasePath,
|
|
ErrorPagesBasePath,
|
|
MiddlewareComposeBasePath,
|
|
}
|
|
|
|
const DockerHostFromEnv = "$DOCKER_HOST"
|
|
|
|
const (
|
|
HealthCheckIntervalDefault = 5 * time.Second
|
|
HealthCheckTimeoutDefault = 5 * time.Second
|
|
|
|
WakeTimeoutDefault = "30s"
|
|
StopTimeoutDefault = "30s"
|
|
StopMethodDefault = "stop"
|
|
)
|
|
|
|
const HeaderCheckRedirect = "X-Goproxy-Check-Redirect"
|