Fix bad address syntax in Global HTTP to HTTPS redirection v2 TOML
This commit is contained in:
parent
5c8d386881
commit
332c314d53
1 changed files with 2 additions and 2 deletions
|
@ -370,13 +370,13 @@ To apply a redirection:
|
||||||
## static configuration
|
## static configuration
|
||||||
|
|
||||||
[entryPoints.web]
|
[entryPoints.web]
|
||||||
address = 80
|
address = ":80"
|
||||||
[entryPoints.web.http.redirections.entryPoint]
|
[entryPoints.web.http.redirections.entryPoint]
|
||||||
to = "websecure"
|
to = "websecure"
|
||||||
scheme = "https"
|
scheme = "https"
|
||||||
|
|
||||||
[entryPoints.websecure]
|
[entryPoints.websecure]
|
||||||
address = 443
|
address = ":443"
|
||||||
```
|
```
|
||||||
|
|
||||||
```yaml tab="File (YAML)"
|
```yaml tab="File (YAML)"
|
||||||
|
|
Loading…
Reference in a new issue