mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-25 04:24:33 +00:00

* fix: remove access interceptor for console * feat: template quota cookie value * fix: send exhausted cookie from grpc-gateway * refactor: remove ineffectual err assignments * Update internal/api/grpc/server/gateway.go Co-authored-by: Livio Spring <livio.a@gmail.com> * use dynamic host header to find instance * add instance mgmt url to environment.json * support hosts with default ports * fix linting * docs: update lb example * print access logs to stdout * fix grpc gateway exhausted cookies * cleanup --------- Co-authored-by: Livio Spring <livio.a@gmail.com>
31 lines
818 B
YAML
31 lines
818 B
YAML
# All possible options and their defaults: https://github.com/zitadel/zitadel/blob/main/cmd/defaults.yaml
|
|
Log:
|
|
Level: 'info'
|
|
|
|
# Make ZITADEL accessible over HTTP, not HTTPS
|
|
ExternalSecure: true
|
|
ExternalDomain: my.domain
|
|
ExternalPort: 443
|
|
|
|
# If not using the docker compose example, adjust these values for connecting ZITADEL to your CockroachDB
|
|
Database:
|
|
cockroach:
|
|
Host: 'my-cockroach-db'
|
|
User:
|
|
SSL:
|
|
Mode: 'verify-full'
|
|
RootCert: "/crdb-certs/ca.crt"
|
|
Cert: "/crdb-certs/client.zitadel_user.crt"
|
|
Key: "/crdb-certs/client.zitadel_user.key"
|
|
Admin:
|
|
SSL:
|
|
Mode: 'verify-full'
|
|
RootCert: "/crdb-certs/ca.crt"
|
|
Cert: "/crdb-certs/client.root.crt"
|
|
Key: "/crdb-certs/client.root.key"
|
|
|
|
LogStore:
|
|
Access:
|
|
Stdout:
|
|
Enabled: true
|