Fix bad address syntax in Global HTTP to HTTPS redirection v2 TOML

This commit is contained in:
Benjamin Freeman 2020-04-02 13:20:05 +02:00 committed by GitHub
parent 5c8d386881
commit 332c314d53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)"