blob: e90f737bff16225fcae3d195928cfab6c4d7cb33 [file] [log] [blame]
Mandeep Khindad9dc9482017-08-30 14:39:43 +00001global
2 log /dev/log local0
3 stats socket /usr/local/etc/haproxy/haproxy.socket mode 660 level admin
4 stats timeout 30s
5 user root
6 group root
7 daemon
8 #################################
9 # Default SSL material locations#
10 #################################
11 ca-base /etc/ssl/certs
12 crt-base /etc/ssl/private
13
14 # Default ciphers to use on SSL-enabled listening sockets.
15 # For more information, see ciphers(1SSL). This list is from:
16 # https://hynek.me/articles/hardening-your-web-servers-ssl-ciphers/
17 # An alternative list with additional directives can be obtained from
18 # https://mozilla.github.io/server-side-tls/ssl-config-generator/?server=haproxy
19 tune.ssl.default-dh-param 2048
20
21defaults
22 log global
23 mode http
24 option httplog
Jimmy Forsythf4613972018-06-08 14:30:27 -040025 option ssl-hello-chk
26 option httpchk GET /aai/util/echo HTTP/1.1\r\nHost:\ aai\r\nX-TransactionId:\ haproxy-0111\r\nX-FromAppId:\ haproxy\r\nAccept:\ application/json\r\nAuthorization:\ Basic\ QUFJOkFBSQ==
27 default-server init-addr none
Mandeep Khindad9dc9482017-08-30 14:39:43 +000028# option dontlognull
29# errorfile 400 /etc/haproxy/errors/400.http
30# errorfile 403 /etc/haproxy/errors/403.http
31# errorfile 408 /etc/haproxy/errors/408.http
32# errorfile 500 /etc/haproxy/errors/500.http
33# errorfile 502 /etc/haproxy/errors/502.http
34# errorfile 503 /etc/haproxy/errors/503.http
35# errorfile 504 /etc/haproxy/errors/504.http
36
37 option http-server-close
38 option forwardfor except 127.0.0.1
39 retries 6
40 option redispatch
41 maxconn 50000
42 timeout connect 50000
43 timeout client 480000
44 timeout server 480000
45 timeout http-keep-alive 30000
46
47
48frontend IST_8443
49 mode http
50 bind 0.0.0.0:8443 name https ssl crt /etc/ssl/private/aai.pem
51# log-format %ci:%cp\ [%t]\ %ft\ %b/%s\ %Tq/%Tw/%Tc/%Tr/%Tt\ %ST\ %B\ %CC\ %CS\ %tsc\ %ac/%fc/%bc/%sc/%rc\ %sq/%bq\ %hr\ %hs\ {%[ssl_c_verify],%{+Q}[ssl_c_s_dn],%{+Q}[ssl_c_i_dn]}\ %{+Q}r
52 log-format "%ci:%cp [%tr] %ft %b/%s %TR/%Tw/%Tc/%Tr/%Ta %ST %B %CC \ %CS %tsc %ac/%fc/%bc/%sc/%rc %sq/%bq %hr %hs %{+Q}r"
53 option httplog
54 log global
55 option logasap
56 option forwardfor
57 capture request header Host len 100
58 capture response header Host len 100
59 option log-separate-errors
60 option forwardfor
61 http-request set-header X-Forwarded-Proto https if { ssl_fc }
62 http-request set-header X-AAI-Client-SSL TRUE if { ssl_c_used }
63 http-request set-header X-AAI-SSL %[ssl_fc]
64 http-request set-header X-AAI-SSL-Client-Verify %[ssl_c_verify]
65 http-request set-header X-AAI-SSL-Client-DN %{+Q}[ssl_c_s_dn]
66 http-request set-header X-AAI-SSL-Client-CN %{+Q}[ssl_c_s_dn(cn)]
67 http-request set-header X-AAI-SSL-Issuer %{+Q}[ssl_c_i_dn]
68 http-request set-header X-AAI-SSL-Client-NotBefore %{+Q}[ssl_c_notbefore]
69 http-request set-header X-AAI-SSL-Client-NotAfter %{+Q}[ssl_c_notafter]
70 http-request set-header X-AAI-SSL-ClientCert-Base64 %{+Q}[ssl_c_der,base64]
71 http-request set-header X-AAI-SSL-Client-OU %{+Q}[ssl_c_s_dn(OU)]
72 http-request set-header X-AAI-SSL-Client-L %{+Q}[ssl_c_s_dn(L)]
73 http-request set-header X-AAI-SSL-Client-ST %{+Q}[ssl_c_s_dn(ST)]
74 http-request set-header X-AAI-SSL-Client-C %{+Q}[ssl_c_s_dn(C)]
75 http-request set-header X-AAI-SSL-Client-O %{+Q}[ssl_c_s_dn(O)]
76 reqadd X-Forwarded-Proto:\ https
77 reqadd X-Forwarded-Port:\ 8443
78
79#######################
80#ACLS FOR PORT 8446####
81#######################
82
83 acl is_Port_8446_generic path_reg -i ^/aai/v[0-9]+/search/generic-query$
84 acl is_Port_8446_nodes path_reg -i ^/aai/v[0-9]+/search/nodes-query$
85 acl is_Port_8446_version path_reg -i ^/aai/v[0-9]+/query$
86 acl is_named-query path_beg -i /aai/search/named-query
87 acl is_search-model path_beg -i /aai/search/model
88 use_backend IST_AAI_8446 if is_Port_8446_generic or is_Port_8446_nodes or is_Port_8446_version or is_named-query or is_search-model
89
90 default_backend IST_Default_8447
91
92
93#######################
94#DEFAULT BACKEND 847###
95#######################
96
97backend IST_Default_8447
98 balance roundrobin
99 http-request set-header X-Forwarded-Port %[src_port]
100 http-response set-header Strict-Transport-Security max-age=16000000;\ includeSubDomains;\ preload;
Jimmy Forsythf4613972018-06-08 14:30:27 -0400101 server aai-resources.{{.Release.Namespace}} aai-resources.{{.Release.Namespace}}.svc.cluster.local:8447 resolvers kubernetes check check-ssl port 8447 ssl verify none
102
Mandeep Khindad9dc9482017-08-30 14:39:43 +0000103
104#######################
105# BACKEND 8446#########
106#######################
107
108backend IST_AAI_8446
109 balance roundrobin
110 http-request set-header X-Forwarded-Port %[src_port]
111 http-response set-header Strict-Transport-Security max-age=16000000;\ includeSubDomains;\ preload;
Jimmy Forsythf4613972018-06-08 14:30:27 -0400112 server aai-traversal.{{.Release.Namespace}} aai-traversal.{{.Release.Namespace}}.svc.cluster.local:8446 resolvers kubernetes check check-ssl port 8446 ssl verify none
Mandeep Khindad9dc9482017-08-30 14:39:43 +0000113
114listen IST_AAI_STATS
115 mode http
116 bind *:8080
117 stats uri /stats
118 stats enable
119 stats refresh 30s
120 stats hide-version
121 stats auth admin:admin
122 stats show-legends
123 stats show-desc IST AAI APPLICATION NODES
124 stats admin if TRUE