2022-03-28 10:05:09 +02:00
|
|
|
package start
|
|
|
|
|
|
|
|
import (
|
2022-05-02 11:18:17 +02:00
|
|
|
"time"
|
|
|
|
|
2022-04-21 12:37:39 +02:00
|
|
|
"github.com/mitchellh/mapstructure"
|
2022-03-29 11:53:19 +02:00
|
|
|
"github.com/spf13/viper"
|
2022-04-27 01:01:45 +02:00
|
|
|
"github.com/zitadel/logging"
|
2022-03-29 11:53:19 +02:00
|
|
|
|
2024-01-25 17:28:20 +01:00
|
|
|
"github.com/zitadel/zitadel/cmd/encryption"
|
2024-02-16 17:04:42 +01:00
|
|
|
"github.com/zitadel/zitadel/cmd/hooks"
|
2022-10-06 14:23:59 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/actions"
|
2022-04-27 01:01:45 +02:00
|
|
|
admin_es "github.com/zitadel/zitadel/internal/admin/repository/eventsourcing"
|
|
|
|
internal_authz "github.com/zitadel/zitadel/internal/api/authz"
|
|
|
|
"github.com/zitadel/zitadel/internal/api/http/middleware"
|
|
|
|
"github.com/zitadel/zitadel/internal/api/oidc"
|
2022-12-09 13:04:33 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/api/saml"
|
2022-04-27 01:01:45 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/api/ui/console"
|
|
|
|
"github.com/zitadel/zitadel/internal/api/ui/login"
|
|
|
|
auth_es "github.com/zitadel/zitadel/internal/auth/repository/eventsourcing"
|
2024-09-25 22:40:21 +03:00
|
|
|
"github.com/zitadel/zitadel/internal/cache"
|
2022-04-28 14:44:13 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/command"
|
|
|
|
"github.com/zitadel/zitadel/internal/config/hook"
|
2022-06-24 14:38:22 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/config/network"
|
2022-04-27 01:01:45 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/config/systemdefaults"
|
|
|
|
"github.com/zitadel/zitadel/internal/database"
|
2023-10-25 17:10:45 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
2022-12-15 10:40:13 +01:00
|
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
2022-09-07 10:35:12 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/id"
|
2023-02-15 02:52:11 +01:00
|
|
|
"github.com/zitadel/zitadel/internal/logstore"
|
2023-07-06 08:38:13 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/notification/handlers"
|
2022-04-27 01:01:45 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/query/projection"
|
|
|
|
static_config "github.com/zitadel/zitadel/internal/static/config"
|
2022-07-18 10:42:32 +02:00
|
|
|
metrics "github.com/zitadel/zitadel/internal/telemetry/metrics/config"
|
2024-08-16 15:26:53 +02:00
|
|
|
profiler "github.com/zitadel/zitadel/internal/telemetry/profiler/config"
|
2022-04-28 14:44:13 +02:00
|
|
|
tracing "github.com/zitadel/zitadel/internal/telemetry/tracing/config"
|
2022-03-28 10:05:09 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
feat: trusted (instance) domains (#8369)
# Which Problems Are Solved
ZITADEL currently selects the instance context based on a HTTP header
(see https://github.com/zitadel/zitadel/issues/8279#issue-2399959845 and
checks it against the list of instance domains. Let's call it instance
or API domain.
For any context based URL (e.g. OAuth, OIDC, SAML endpoints, links in
emails, ...) the requested domain (instance domain) will be used. Let's
call it the public domain.
In cases of proxied setups, all exposed domains (public domains) require
the domain to be managed as instance domain.
This can either be done using the "ExternalDomain" in the runtime config
or via system API, which requires a validation through CustomerPortal on
zitadel.cloud.
# How the Problems Are Solved
- Two new headers / header list are added:
- `InstanceHostHeaders`: an ordered list (first sent wins), which will
be used to match the instance.
(For backward compatibility: the `HTTP1HostHeader`, `HTTP2HostHeader`
and `forwarded`, `x-forwarded-for`, `x-forwarded-host` are checked
afterwards as well)
- `PublicHostHeaders`: an ordered list (first sent wins), which will be
used as public host / domain. This will be checked against a list of
trusted domains on the instance.
- The middleware intercepts all requests to the API and passes a
`DomainCtx` object with the hosts and protocol into the context
(previously only a computed `origin` was passed)
- HTTP / GRPC server do not longer try to match the headers to instances
themself, but use the passed `http.DomainContext` in their interceptors.
- The `RequestedHost` and `RequestedDomain` from authz.Instance are
removed in favor of the `http.DomainContext`
- When authenticating to or signing out from Console UI, the current
`http.DomainContext(ctx).Origin` (already checked by instance
interceptor for validity) is used to compute and dynamically add a
`redirect_uri` and `post_logout_redirect_uri`.
- Gateway passes all configured host headers (previously only did
`x-zitadel-*`)
- Admin API allows to manage trusted domain
# Additional Changes
None
# Additional Context
- part of #8279
- open topics:
- "single-instance" mode
- Console UI
2024-07-31 17:00:38 +02:00
|
|
|
Log *logging.Config
|
|
|
|
Port uint16
|
|
|
|
ExternalPort uint16
|
|
|
|
ExternalDomain string
|
|
|
|
ExternalSecure bool
|
|
|
|
TLS network.TLS
|
|
|
|
InstanceHostHeaders []string
|
|
|
|
PublicHostHeaders []string
|
|
|
|
HTTP2HostHeader string
|
|
|
|
HTTP1HostHeader string
|
|
|
|
WebAuthNName string
|
|
|
|
Database database.Config
|
2024-09-25 22:40:21 +03:00
|
|
|
Caches *cache.CachesConfig
|
feat: trusted (instance) domains (#8369)
# Which Problems Are Solved
ZITADEL currently selects the instance context based on a HTTP header
(see https://github.com/zitadel/zitadel/issues/8279#issue-2399959845 and
checks it against the list of instance domains. Let's call it instance
or API domain.
For any context based URL (e.g. OAuth, OIDC, SAML endpoints, links in
emails, ...) the requested domain (instance domain) will be used. Let's
call it the public domain.
In cases of proxied setups, all exposed domains (public domains) require
the domain to be managed as instance domain.
This can either be done using the "ExternalDomain" in the runtime config
or via system API, which requires a validation through CustomerPortal on
zitadel.cloud.
# How the Problems Are Solved
- Two new headers / header list are added:
- `InstanceHostHeaders`: an ordered list (first sent wins), which will
be used to match the instance.
(For backward compatibility: the `HTTP1HostHeader`, `HTTP2HostHeader`
and `forwarded`, `x-forwarded-for`, `x-forwarded-host` are checked
afterwards as well)
- `PublicHostHeaders`: an ordered list (first sent wins), which will be
used as public host / domain. This will be checked against a list of
trusted domains on the instance.
- The middleware intercepts all requests to the API and passes a
`DomainCtx` object with the hosts and protocol into the context
(previously only a computed `origin` was passed)
- HTTP / GRPC server do not longer try to match the headers to instances
themself, but use the passed `http.DomainContext` in their interceptors.
- The `RequestedHost` and `RequestedDomain` from authz.Instance are
removed in favor of the `http.DomainContext`
- When authenticating to or signing out from Console UI, the current
`http.DomainContext(ctx).Origin` (already checked by instance
interceptor for validity) is used to compute and dynamically add a
`redirect_uri` and `post_logout_redirect_uri`.
- Gateway passes all configured host headers (previously only did
`x-zitadel-*`)
- Admin API allows to manage trusted domain
# Additional Changes
None
# Additional Context
- part of #8279
- open topics:
- "single-instance" mode
- Console UI
2024-07-31 17:00:38 +02:00
|
|
|
Tracing tracing.Config
|
|
|
|
Metrics metrics.Config
|
2024-08-16 15:26:53 +02:00
|
|
|
Profiler profiler.Config
|
feat: trusted (instance) domains (#8369)
# Which Problems Are Solved
ZITADEL currently selects the instance context based on a HTTP header
(see https://github.com/zitadel/zitadel/issues/8279#issue-2399959845 and
checks it against the list of instance domains. Let's call it instance
or API domain.
For any context based URL (e.g. OAuth, OIDC, SAML endpoints, links in
emails, ...) the requested domain (instance domain) will be used. Let's
call it the public domain.
In cases of proxied setups, all exposed domains (public domains) require
the domain to be managed as instance domain.
This can either be done using the "ExternalDomain" in the runtime config
or via system API, which requires a validation through CustomerPortal on
zitadel.cloud.
# How the Problems Are Solved
- Two new headers / header list are added:
- `InstanceHostHeaders`: an ordered list (first sent wins), which will
be used to match the instance.
(For backward compatibility: the `HTTP1HostHeader`, `HTTP2HostHeader`
and `forwarded`, `x-forwarded-for`, `x-forwarded-host` are checked
afterwards as well)
- `PublicHostHeaders`: an ordered list (first sent wins), which will be
used as public host / domain. This will be checked against a list of
trusted domains on the instance.
- The middleware intercepts all requests to the API and passes a
`DomainCtx` object with the hosts and protocol into the context
(previously only a computed `origin` was passed)
- HTTP / GRPC server do not longer try to match the headers to instances
themself, but use the passed `http.DomainContext` in their interceptors.
- The `RequestedHost` and `RequestedDomain` from authz.Instance are
removed in favor of the `http.DomainContext`
- When authenticating to or signing out from Console UI, the current
`http.DomainContext(ctx).Origin` (already checked by instance
interceptor for validity) is used to compute and dynamically add a
`redirect_uri` and `post_logout_redirect_uri`.
- Gateway passes all configured host headers (previously only did
`x-zitadel-*`)
- Admin API allows to manage trusted domain
# Additional Changes
None
# Additional Context
- part of #8279
- open topics:
- "single-instance" mode
- Console UI
2024-07-31 17:00:38 +02:00
|
|
|
Projections projection.Config
|
|
|
|
Auth auth_es.Config
|
|
|
|
Admin admin_es.Config
|
|
|
|
UserAgentCookie *middleware.UserAgentCookieConfig
|
|
|
|
OIDC oidc.Config
|
|
|
|
SAML saml.Config
|
|
|
|
Login login.Config
|
|
|
|
Console console.Config
|
|
|
|
AssetStorage static_config.AssetStorageConfig
|
|
|
|
InternalAuthZ internal_authz.Config
|
|
|
|
SystemDefaults systemdefaults.SystemDefaults
|
|
|
|
EncryptionKeys *encryption.EncryptionKeyConfig
|
|
|
|
DefaultInstance command.InstanceSetup
|
|
|
|
AuditLogRetention time.Duration
|
|
|
|
SystemAPIUsers map[string]*internal_authz.SystemAPIUser
|
|
|
|
CustomerPortal string
|
|
|
|
Machine *id.Config
|
|
|
|
Actions *actions.Config
|
|
|
|
Eventstore *eventstore.Config
|
|
|
|
LogStore *logstore.Configs
|
|
|
|
Quotas *QuotasConfig
|
|
|
|
Telemetry *handlers.TelemetryPusherConfig
|
2023-02-15 02:52:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type QuotasConfig struct {
|
2023-09-15 16:58:45 +02:00
|
|
|
Access struct {
|
|
|
|
logstore.EmitterConfig `mapstructure:",squash"`
|
|
|
|
middleware.AccessConfig `mapstructure:",squash"`
|
|
|
|
}
|
|
|
|
Execution *logstore.EmitterConfig
|
2022-03-28 10:05:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func MustNewConfig(v *viper.Viper) *Config {
|
|
|
|
config := new(Config)
|
|
|
|
|
2022-04-21 12:37:39 +02:00
|
|
|
err := v.Unmarshal(config,
|
|
|
|
viper.DecodeHook(mapstructure.ComposeDecodeHookFunc(
|
2024-02-16 17:04:42 +01:00
|
|
|
hooks.SliceTypeStringDecode[*domain.CustomMessageText],
|
|
|
|
hooks.SliceTypeStringDecode[internal_authz.RoleMapping],
|
|
|
|
hooks.MapTypeStringDecode[string, *internal_authz.SystemAPIUser],
|
|
|
|
hooks.MapHTTPHeaderStringDecode,
|
2024-05-01 12:17:27 +02:00
|
|
|
database.DecodeHook,
|
|
|
|
actions.HTTPConfigDecodeHook,
|
|
|
|
hook.EnumHookFunc(internal_authz.MemberTypeString),
|
|
|
|
hooks.MapTypeStringDecode[domain.Feature, any],
|
|
|
|
hooks.SliceTypeStringDecode[*command.SetQuota],
|
2022-04-21 12:37:39 +02:00
|
|
|
hook.Base64ToBytesHookFunc(),
|
|
|
|
hook.TagToLanguageHookFunc(),
|
|
|
|
mapstructure.StringToTimeDurationHookFunc(),
|
2022-12-09 13:04:33 +00:00
|
|
|
mapstructure.StringToTimeHookFunc(time.RFC3339),
|
2022-04-21 12:37:39 +02:00
|
|
|
mapstructure.StringToSliceHookFunc(","),
|
2024-08-14 17:18:14 +03:00
|
|
|
mapstructure.TextUnmarshallerHookFunc(),
|
2022-04-21 12:37:39 +02:00
|
|
|
)),
|
|
|
|
)
|
2022-07-18 10:42:32 +02:00
|
|
|
logging.OnError(err).Fatal("unable to read config")
|
|
|
|
|
2022-03-28 10:05:09 +02:00
|
|
|
err = config.Log.SetLogger()
|
|
|
|
logging.OnError(err).Fatal("unable to set logger")
|
|
|
|
|
2022-04-28 14:44:13 +02:00
|
|
|
err = config.Tracing.NewTracer()
|
|
|
|
logging.OnError(err).Fatal("unable to set tracer")
|
|
|
|
|
2022-07-18 10:42:32 +02:00
|
|
|
err = config.Metrics.NewMeter()
|
|
|
|
logging.OnError(err).Fatal("unable to set meter")
|
|
|
|
|
2024-08-16 15:26:53 +02:00
|
|
|
err = config.Profiler.NewProfiler()
|
|
|
|
logging.OnError(err).Fatal("unable to set profiler")
|
|
|
|
|
2022-09-07 10:35:12 +02:00
|
|
|
id.Configure(config.Machine)
|
2022-10-06 14:23:59 +02:00
|
|
|
actions.SetHTTPConfig(&config.Actions.HTTP)
|
2022-09-07 10:35:12 +02:00
|
|
|
|
2022-03-28 10:05:09 +02:00
|
|
|
return config
|
|
|
|
}
|