mirror of
https://github.com/yusing/godoxy.git
synced 2026-04-14 13:10:16 +02:00
Add root-level inbound_mtls_profiles combining optional system CAs with PEM CA files, and entrypoint.inbound_mtls_profile to require client certificates on every HTTPS connection. Route-level inbound_mtls_profile is allowed only without a global profile; per-handshake TLS picks ClientCAs from SNI, and requests fail with 421 when Host and SNI would select different mTLS routes. Compile pools at init (SetInboundMTLSProfiles from state.initEntrypoint) and reject unknown profile refs or mixed global-plus-route configuration. Extend config.example.yml and package READMEs; add entrypoint and config tests for TLS mutation, handshakes, and validation.
82 lines
1.9 KiB
Go
82 lines
1.9 KiB
Go
package types
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/rs/zerolog"
|
|
"github.com/yusing/godoxy/internal/agentpool"
|
|
"github.com/yusing/godoxy/internal/homepage"
|
|
nettypes "github.com/yusing/godoxy/internal/net/types"
|
|
provider "github.com/yusing/godoxy/internal/route/provider/types"
|
|
"github.com/yusing/goutils/http/reverseproxy"
|
|
"github.com/yusing/goutils/pool"
|
|
"github.com/yusing/goutils/task"
|
|
)
|
|
|
|
type (
|
|
Route interface {
|
|
task.TaskStarter
|
|
task.TaskFinisher
|
|
pool.Object
|
|
zerolog.LogObjectMarshaler
|
|
|
|
ProviderName() string
|
|
GetProvider() RouteProvider
|
|
ListenURL() *nettypes.URL
|
|
TargetURL() *nettypes.URL
|
|
HealthMonitor() HealthMonitor
|
|
SetHealthMonitor(m HealthMonitor)
|
|
References() []string
|
|
ShouldExclude() bool
|
|
|
|
Started() <-chan struct{}
|
|
|
|
IdlewatcherConfig() *IdlewatcherConfig
|
|
HealthCheckConfig() HealthCheckConfig
|
|
LoadBalanceConfig() *LoadBalancerConfig
|
|
HomepageItem() homepage.Item
|
|
DisplayName() string
|
|
ContainerInfo() *Container
|
|
InboundMTLSProfileRef() string
|
|
|
|
GetAgent() *agentpool.Agent
|
|
|
|
IsDocker() bool
|
|
IsAgent() bool
|
|
UseLoadBalance() bool
|
|
UseIdleWatcher() bool
|
|
UseHealthCheck() bool
|
|
UseAccessLog() bool
|
|
}
|
|
HTTPRoute interface {
|
|
Route
|
|
http.Handler
|
|
}
|
|
ReverseProxyRoute interface {
|
|
HTTPRoute
|
|
ReverseProxy() *reverseproxy.ReverseProxy
|
|
}
|
|
FileServerRoute interface {
|
|
HTTPRoute
|
|
RootPath() string
|
|
}
|
|
StreamRoute interface {
|
|
Route
|
|
nettypes.Stream
|
|
Stream() nettypes.Stream
|
|
}
|
|
RouteProvider interface {
|
|
Start(parent task.Parent) error
|
|
LoadRoutes() error
|
|
GetRoute(alias string) (r Route, ok bool)
|
|
// should be used like `for _, r := range p.IterRoutes` (no braces), not calling it directly
|
|
IterRoutes(yield func(alias string, r Route) bool)
|
|
NumRoutes() int
|
|
FindService(project, service string) (r Route, ok bool)
|
|
Statistics() ProviderStats
|
|
GetType() provider.Type
|
|
ShortName() string
|
|
String() string
|
|
}
|
|
)
|