mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-05 08:22:04 +00:00
* WIP: docs(proxy): describe proxy settings * fix nginx * refactor (docs): deploy and operate sections * chore: ignore package-lock since we use yarn * chore: update to rc1 * chore: broken links * chore: update yarn * docs: move disclaimer to bottom * chore: fix broken links * Update docs/docs/guides/operate/tls_modes.mdx Co-authored-by: Fabi <38692350+hifabienne@users.noreply.github.com> * test caddy files * syntax highlight * traefik example * refactor: docs * refactor * working state * got a working state * remove bar * mark rate limits for update * remove zitadel.ch * fix cases * docs: zitadel quickstart * docs: zitadel quickstart * docs: create app and project * docs: move customer portal docs to guides manage cloud * docs: move customer portal docs to guides manage cloud * docs: move customer portal docs to guides manage cloud * docs: add help me choose in the quickstart * docs: broken links * fix broken links * Update knative guide * styling * docs: support customer portal * update to main instead v2-alpha * use version 2 tag * docs: images * docs: move authentication and authorization guides to integrate * docs: quickstart use examples * docs: lb example * fix broken link * docs: update userinfo endpoints * docs: update userinfo endpoints * fix oidc endpoint * docs: remove unused endpoints in app.module Co-authored-by: Fabi <38692350+hifabienne@users.noreply.github.com> Co-authored-by: Fabienne <fabienne.gerschwiler@gmail.com> Co-authored-by: Livio Amstutz <livio.a@gmail.com>
54 lines
1.2 KiB
Plaintext
54 lines
1.2 KiB
Plaintext
---
|
|
title: Proxy Configuration
|
|
---
|
|
|
|
import Tabs from "@theme/Tabs";
|
|
import TabItem from "@theme/TabItem";
|
|
import Zcloud from './_zitadel_cloud.mdx'
|
|
import Nginx from './_nginx.mdx'
|
|
import Traefik from './_traefik.mdx'
|
|
import Caddy from './_caddy.mdx'
|
|
import Cftunnel from './_cloudflare_tunnel.mdx'
|
|
import Cloudflare from './_cloudflare.mdx'
|
|
import More from './_more.mdx'
|
|
|
|
# Proxy Configuration
|
|
|
|
<Tabs
|
|
groupId="proxy-vendor"
|
|
default="zcloud"
|
|
values={[
|
|
{'label': 'ZITADEL Cloud', 'value': 'zcloud'},
|
|
{'label': 'NGINX', 'value': 'nginx'},
|
|
{'label': 'Traefik', 'value': 'traefik'},
|
|
{'label': 'Caddy', 'value': 'caddy'},
|
|
{'label': 'Cloudflare Tunnel', 'value': 'cftunnel'},
|
|
{'label': 'Cloudflare', 'value': 'cf'}
|
|
]}
|
|
>
|
|
<TabItem value="zcloud">
|
|
<Zcloud/>
|
|
<More/>
|
|
</TabItem>
|
|
<TabItem value="nginx">
|
|
<Nginx/>
|
|
<More/>
|
|
</TabItem>
|
|
<TabItem value="traefik">
|
|
<Traefik/>
|
|
<More/>
|
|
</TabItem>
|
|
<TabItem value="caddy">
|
|
<Caddy/>
|
|
<More/>
|
|
</TabItem>
|
|
<TabItem value="cftunnel">
|
|
<Cftunnel/>
|
|
<More/>
|
|
</TabItem>
|
|
<TabItem value="cf">
|
|
<Cloudflare/>
|
|
<More/>
|
|
</TabItem>
|
|
</Tabs>
|