HAProxy 安全配置

在HAProxy案例中加入安全配置,可以参考以下步骤和示例配置。这个案例将展示如何在HAProxy中实现基本的安全措施,包括限制访问、启用HTTPS、配置HSTS以及使用ACLs进行细粒度控制。

1. 限制访问

使用ACLs来限制哪些IP地址或网络可以访问HAProxy服务。

plaintext 复制代码
frontend http_front
    bind *:80
    acl allowed_ips src 192.168.1.0/24
    http-request allow if allowed_ips
    http-request deny

2. 启用HTTPS

配置SSL/TLS证书来加密客户端和HAProxy之间的通信。

plaintext 复制代码
frontend https_front
    bind *:443 ssl crt /path/to/your/certificate.pem alpn h2,http/1.1
    default_backend https_back

3. 配置HSTS

启用HSTS头以防止协议降级攻击。

plaintext 复制代码
http-response set-header Strict-Transport-Security "max-age=31536000; includeSubDomains" if { ssl_fc }

4. 使用ACLs进行细粒度控制

通过ACLs实现更复杂的访问控制逻辑。

plaintext 复制代码
frontend https_front
    bind *:443 ssl crt /path/to/your/certificate.pem alpn h2,http/1.1
    acl is_admin path_beg /admin
    use_backend admin_backend if is_admin
    default_backend user_backend

backend admin_backend
    server admin_server 192.168.1.101:80 check

backend user_backend
    server user_server 192.168.1.102:80 check

5. 防止DDoS攻击

使用限速和连接数限制来减轻DDoS攻击的影响。

plaintext 复制代码
frontend https_front
    bind *:443 ssl crt /path/to/your/certificate.pem alpn h2,http/1.1
    limit_req zone=one burst=5 nodelay
    default_backend https_back

backend https_back
    balance roundrobin
    server web1 192.168.1.101:80 check
    server web2 192.168.1.102:80 check

完整示例配置

plaintext 复制代码
global
    log /dev/log local0
    maxconn 4096
    ssl-default-bind-ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES1:EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH

defaults
    log global
    mode http
    option httplog
    timeout connect 5000ms
    timeout client 50000ms
    timeout server 50000ms

frontend http_front
    bind *:80
    acl allowed_ips src 192.168.1.0/24
    http-request allow if allowed_ips
    http-request deny

frontend https_front
    bind *:443 ssl crt /path/to/your/certificate.pem alpn h2,http/1.1
    acl is_admin path_beg /admin
    use_backend admin_backend if is_admin
    default_backend user_backend
    http-response set-header Strict-Transport-Security "max-age=31536000; includeSubDomains" if { ssl_fc }
    limit_req zone=one burst=5 nodelay

backend admin_backend
    server admin_server 192.168.1.101:80 check

backend user_backend
    balance roundrobin
    server web1 192.168.1.101:80 check
    server web2 192.168.1.102:80 check

注意事项

  • 证书管理:确保SSL/TLS证书有效且安全。
  • 日志监控:定期检查HAProxy日志以发现异常行为。
  • 定期更新:保持HAProxy及其依赖库的最新版本。

通过这些配置,您可以显著提高HAProxy部署的安全性。务必根据您的具体环境和需求进行调整和优化。

相关推荐
co0t4 分钟前
计算机网络(14)ip地址超详解
服务器·tcp/ip·计算机网络
C++忠实粉丝5 分钟前
计算机网络socket编程(3)_UDP网络编程实现简单聊天室
linux·网络·c++·网络协议·计算机网络·udp
淡水猫.11 分钟前
Fakelocation Server服务器/专业版 ubuntu
运维·服务器·ubuntu
黑客Ela12 分钟前
网络安全中常用浏览器插件、拓展
网络·安全·web安全·网络安全·php
wenyue112117 分钟前
Ease Monitor 会把基础层,中间件层的监控数据和服务的监控数据打通,从总体的视角提供监控分析
运维·中间件·监控
西京刀客23 分钟前
密码学之柯克霍夫原则(Kerckhoff原则)
安全·密码学
量子网络23 分钟前
debian 如何进入root
linux·服务器·debian
时光の尘26 分钟前
C语言菜鸟入门·关键字·float以及double的用法
运维·服务器·c语言·开发语言·stm32·单片机·c
我们的五年31 分钟前
【Linux课程学习】:进程描述---PCB(Process Control Block)
linux·运维·c++
Gworg31 分钟前
创建HTTPS网站
安全·https·ssl