docs(nginx): change example for webauthn (#4382)

Co-authored-by: Florian Forster <florian@zitadel.com>
This commit is contained in:
Stefan Benz 2022-09-15 16:38:17 +01:00 committed by GitHub
parent 721e48a489
commit d8a834f364
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,12 +15,22 @@ http {
location / {
grpc_pass grpc://localhost:8080;
grpc_set_header Host $host:$server_port;
grpc_set_header Host $host;
}
}
}
```
:::info
If another port than the default HTTPS port 443 is used replace
` grpc_set_header Host $host;`
with
` grpc_set_header Host $host:$server_port;`
:::
## TLS mode enabled
```bash
@ -38,12 +48,22 @@ http {
location / {
grpc_pass grpcs://localhost:8080;
grpc_set_header Host $host:$server_port;
grpc_set_header Host $host;
}
}
}
```
:::info
If another port than the default HTTPS port 443 is used replace
` grpc_set_header Host $host;`
with
` grpc_set_header Host $host:$server_port;`
:::
## TLS mode disabled
```bash
@ -58,8 +78,18 @@ http {
location / {
grpc_pass grpc://localhost:8080;
grpc_set_header Host $host:$server_port;
grpc_set_header Host $host;
}
}
}
```
:::info
If another port than the default HTTP port 80 is used replace
` grpc_set_header Host $host;`
with
` grpc_set_header Host $host:$server_port;`
:::