mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-31 10:46:38 +00:00
* docs: split out self-hosting into section * check for broken links * fix netlify proxy forward * use full path
26 lines
371 B
Plaintext
26 lines
371 B
Plaintext
## TLS mode external
|
|
|
|
```
|
|
https://localhost {
|
|
reverse_proxy h2c://localhost:8080
|
|
tls internal #only non production
|
|
}
|
|
```
|
|
|
|
## TLS mode enabled
|
|
|
|
```
|
|
https://localhost {
|
|
reverse_proxy https://localhost:8080
|
|
tls internal #only non production
|
|
}
|
|
```
|
|
|
|
## TLS mode disabled
|
|
|
|
```
|
|
http://localhost {
|
|
reverse_proxy h2c://localhost:8080
|
|
}
|
|
```
|