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
|
||||
|
||||
[entryPoints.web]
|
||||
address = 80
|
||||
address = ":80"
|
||||
[entryPoints.web.http.redirections.entryPoint]
|
||||
to = "websecure"
|
||||
scheme = "https"
|
||||
|
||||
[entryPoints.websecure]
|
||||
address = 443
|
||||
address = ":443"
|
||||
```
|
||||
|
||||
```yaml tab="File (YAML)"
|
||||
|
|
Loading…
Reference in a new issue