markdown HAProxy - 将http重定向到https

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown HAProxy - 将http重定向到https相关的知识,希望对你有一定的参考价值。

### Normal Port: Redirect to HTTPS (80 to 443)

```
frontend 80
redirect scheme https code 301 if !{ ssl_fc }
```

### Custom Port: Redirect to HTTPS (2052 to 2053)

```
frontend 2052
http-request replace-value Host (.*):2052 \1:2053
redirect scheme https code 301 if !{ ssl_fc }
```

以上是关于markdown HAProxy - 将http重定向到https的主要内容,如果未能解决你的问题,请参考以下文章

markdown 为用户列表配置HAProxy

HAProxy 将 http 重定向到 https (ssl)

Haproxy

haproxy反向代理环境部署(http和https代理)

haproxy反向代理环境部署(http和https代理)

用于 HTTP 但不是 WebSockets 的 HAProxy SSL 重定向