차이
문서의 선택한 두 판 사이의 차이를 보여줍니다.
haproxy_설정_예제 [2018/10/18 13:54] – 만듦 koov | haproxy_설정_예제 [2024/07/19 09:41] (현재) – koov | ||
---|---|---|---|
줄 15: | 줄 15: | ||
# Default SSL material locations | # Default SSL material locations | ||
+ | tune.ssl.default-dh-param | ||
ca-base / | ca-base / | ||
crt-base / | crt-base / | ||
줄 23: | 줄 24: | ||
# An alternative list with additional directives can be obtained from | # An alternative list with additional directives can be obtained from | ||
# https:// | # https:// | ||
- | ssl-default-bind-ciphers | + | ssl-default-bind-ciphers |
- | ssl-default-bind-options no-sslv3 | + | # |
+ | ssl-default-bind-options no-sslv3 no-tlsv10 no-tlsv11 no-tls-tickets | ||
+ | |||
+ | ssl-default-server-ciphers ECDHE-ECDSA-AES128-GCM-SHA256: | ||
+ | #ssl-default-server-ciphersuites TLS_AES_128_GCM_SHA256: | ||
+ | ssl-default-server-options no-sslv3 | ||
+ | |||
+ | # curl https:// | ||
+ | ssl-dh-param-file / | ||
defaults | defaults | ||
줄 31: | 줄 40: | ||
option httplog | option httplog | ||
option dontlognull | option dontlognull | ||
+ | option forwardfor | ||
+ | # | ||
timeout connect 5000 | timeout connect 5000 | ||
timeout client | timeout client | ||
줄 42: | 줄 53: | ||
errorfile 504 / | errorfile 504 / | ||
- | frontend | + | frontend |
bind *:80 | bind *:80 | ||
- | | + | |
- | acl is_dev.koov.net hdr(host) -i dev.koov.net | + | |
- | acl is_mail.koov.net hdr(host) | + | # 인증서를 하나의 파일로 묶어서 서비스 하는 방법 |
- | | + | # crt-list.txt 예제 참조 |
- | | + | |
+ | | ||
- | # 호스트명이 allthatlinux.com, | + | http-request set-header X-SSL %[ssl_fc] |
- | acl is_allthatlinux.com hdr_end(host) | + | http-request set-header X-Forwarded-Port %[dst_port] |
- | acl is_linuxdata.kr hdr_end(host) | + | http-request add-header X-Forwarded-Proto https if { ssl_fc } |
+ | http-response set-header Cache-Control no-cache,\ max-age=" | ||
- | # nas 요청중 / 요청을 리다이렉션 | + | ## CertBot Let's Encrypt |
+ | # Test URI to see if its a letsencrypt request | ||
+ | acl letsencrypt-acl path_beg / | ||
+ | use_backend letsencrypt-backend if letsencrypt-acl | ||
+ | |||
+ | ## Host Setting | ||
+ | acl is_nas.sample.net | ||
+ | acl is_plex.sample.net hdr(host) -i plex.sample.net | ||
+ | acl is_meet.sample.net hdr(host) -i meet.sample.net | ||
+ | acl is_mon.sample.net hdr(host) -i mon.sample.net | ||
+ | acl is_db.sample.net hdr(host) -i db.sample.net | ||
+ | acl is_m.sample.net hdr(host) -i m.sample.net | ||
+ | |||
+ | # 호스트명이 XXX 으로 끝나는 모든 | ||
+ | acl is_mydomain.kr | ||
+ | acl is_sample.net | ||
+ | acl is_fatp.org | ||
+ | |||
+ | # 요청을 리다이렉션 | ||
#acl is_redirect_nas | #acl is_redirect_nas | ||
- | #redirect code 301 location / | + | #redirect code 301 location / |
- | #redirect code 301 location http://nas.linuxdata.kr/ | + | #redirect code 301 location http://nas.office.com/ |
- | #redirect prefix / | + | #redirect prefix / |
- | | + | ## Backend Setting |
- | use_backend | + | use_backend |
- | use_backend | + | use_backend backend_nas.sample.net if is_nas.sample.net |
- | use_backend | + | use_backend |
- | use_backend | + | use_backend |
- | use_backend | + | use_backend |
+ | use_backend | ||
+ | use_backend backend_m.sample.net if is_m.sample.net | ||
+ | use_backend backend_mydomain.kr if is_mydomain.kr | ||
+ | use_backend backend_m.second.domain if is_m.second.domain | ||
+ | use_backend backend_j.second.domain if is_j.second.domain | ||
+ | use_backend backend_k.second.domain if is_k.second.domain | ||
+ | use_backend backend_l.second.domain if is_l.second.domain | ||
+ | use_backend backend_www.sample.net if is_sample.net | ||
- | | + | |
+ | # | ||
+ | |||
+ | # 기본 백엔드 설정 | ||
+ | default_backend backend_deny | ||
- | backend backend_home.koov.net | + | http-response set-header Strict-Transport-Security max-age=63072000 |
- | server | + | |
- | backend | + | backend |
- | server | + | redirect scheme https code 301 if !{ ssl_fc } |
+ | server | ||
- | backend | + | backend |
- | server | + | #redirect scheme https code 301 if !{ ssl_fc } |
+ | server | ||
- | backend | + | backend |
- | server | + | redirect scheme https code 301 if !{ ssl_fc } |
+ | server | ||
- | backend | + | backend |
- | server | + | redirect scheme https code 301 if !{ ssl_fc } |
+ | server | ||
- | ### Mysql Connection Forward | + | backend backend_www.fatp.org |
- | listen | + | redirect scheme https code 301 if !{ ssl_fc } |
- | bind *:3306 | + | server |
- | mode tcp | + | |
+ | backend backend_meet.sample.net | ||
+ | redirect scheme https code 301 if !{ ssl_fc } | ||
+ | server | ||
+ | |||
+ | backend backend_mon.sample.net | ||
+ | redirect scheme https code 301 if !{ ssl_fc } | ||
+ | server | ||
+ | |||
+ | backend backend_plex.sample.net | ||
+ | redirect scheme https code 301 if !{ ssl_fc } | ||
+ | server | ||
+ | |||
+ | #backend backend_https_registry.sample.net | ||
+ | # #server server1 backend: | ||
+ | # server | ||
+ | |||
+ | # m.second.domain | ||
+ | backend backend_m.second.domain | ||
+ | redirect scheme https code 301 if !{ ssl_fc } | ||
+ | server | ||
+ | |||
+ | # LE Backend | ||
+ | backend letsencrypt-backend | ||
+ | server letsencrypt 127.0.0.1: | ||
+ | |||
+ | ## deny backend | ||
+ | backend backend_deny | ||
+ | http-request deny deny_status 400 | ||
+ | |||
+ | #### MySQL # -> iptime 에서 direct forwarding 하므로 필요없음 | ||
+ | # | ||
+ | # bind *:3306 | ||
+ | # mode tcp | ||
#timeout client | #timeout client | ||
#timeout server | #timeout server | ||
- | | + | # |
#option httpchk | #option httpchk | ||
#option allbackups | #option allbackups | ||
# | # | ||
- | | + | # |
+ | </ | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== 통합인증서 파일 설정 crt-list.txt ===== | ||
+ | <WRAP prewrap> | ||
+ | <code bash> | ||
+ | root@proxy:/ | ||
+ | / | ||
+ | / | ||
+ | |||
+ | # 통합 인증서파일 생성방법 | ||
+ | cat / | ||
+ | cat / | ||
</ | </ | ||
</ | </ | ||