blob: ea29c903ba7aa2ef2a79787cb1fea9e97100f902 [file] [log] [blame]
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +01001{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +01002# Copyright © 2018 Amdocs, Bell Canada, AT&T
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010015*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010016global
17 log /dev/log local0
18 stats socket /usr/local/etc/haproxy/haproxy.socket mode 660 level admin
19 stats timeout 30s
20 daemon
21 #################################
22 # Default SSL material locations#
23 #################################
24 ca-base /etc/ssl/certs
25 crt-base /etc/ssl/private
26
27 # Default ciphers to use on SSL-enabled listening sockets.
28 # For more information, see ciphers(1SSL). This list is from:
29 # https://hynek.me/articles/hardening-your-web-servers-ssl-ciphers/
30 # An alternative list with additional directives can be obtained from
31 # https://mozilla.github.io/server-side-tls/ssl-config-generator/?server=haproxy
32 tune.ssl.default-dh-param 2048
33
34defaults
35 log global
36 mode http
37 option httplog
38 option ssl-hello-chk
39 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==
40 default-server init-addr none
41# option dontlognull
42# errorfile 400 /etc/haproxy/errors/400.http
43# errorfile 403 /etc/haproxy/errors/403.http
44# errorfile 408 /etc/haproxy/errors/408.http
45# errorfile 500 /etc/haproxy/errors/500.http
46# errorfile 502 /etc/haproxy/errors/502.http
47# errorfile 503 /etc/haproxy/errors/503.http
48# errorfile 504 /etc/haproxy/errors/504.http
49
50 option http-server-close
51 option forwardfor except 127.0.0.1
52 retries 6
53 option redispatch
54 maxconn 50000
55 timeout connect 50000
56 timeout client 480000
57 timeout server 480000
58 timeout http-keep-alive 30000
59
60
61frontend IST_8443
62 mode http
63 bind 0.0.0.0:8443 name https ssl crt /etc/ssl/private/aai.pem
64# 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
65 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"
66 option httplog
67 log global
68 option logasap
69 option forwardfor
70 capture request header Host len 100
71 capture response header Host len 100
72 option log-separate-errors
73 option forwardfor
74 http-request set-header X-Forwarded-Proto https if { ssl_fc }
75 http-request set-header X-AAI-Client-SSL TRUE if { ssl_c_used }
76 http-request set-header X-AAI-SSL %[ssl_fc]
77 http-request set-header X-AAI-SSL-Client-Verify %[ssl_c_verify]
78 http-request set-header X-AAI-SSL-Client-DN %{+Q}[ssl_c_s_dn]
79 http-request set-header X-AAI-SSL-Client-CN %{+Q}[ssl_c_s_dn(cn)]
80 http-request set-header X-AAI-SSL-Issuer %{+Q}[ssl_c_i_dn]
81 http-request set-header X-AAI-SSL-Client-NotBefore %{+Q}[ssl_c_notbefore]
82 http-request set-header X-AAI-SSL-Client-NotAfter %{+Q}[ssl_c_notafter]
83 http-request set-header X-AAI-SSL-ClientCert-Base64 %{+Q}[ssl_c_der,base64]
84 http-request set-header X-AAI-SSL-Client-OU %{+Q}[ssl_c_s_dn(OU)]
85 http-request set-header X-AAI-SSL-Client-L %{+Q}[ssl_c_s_dn(L)]
86 http-request set-header X-AAI-SSL-Client-ST %{+Q}[ssl_c_s_dn(ST)]
87 http-request set-header X-AAI-SSL-Client-C %{+Q}[ssl_c_s_dn(C)]
88 http-request set-header X-AAI-SSL-Client-O %{+Q}[ssl_c_s_dn(O)]
89 reqadd X-Forwarded-Proto:\ https
90 reqadd X-Forwarded-Port:\ 8443
91
92#######################
93#ACLS FOR PORT 8446####
94#######################
95
96 acl is_Port_8446_generic path_reg -i ^/aai/v[0-9]+/search/generic-query$
97 acl is_Port_8446_nodes path_reg -i ^/aai/v[0-9]+/search/nodes-query$
98 acl is_Port_8446_version path_reg -i ^/aai/v[0-9]+/query$
99 acl is_dsl path_reg -i ^/aai/v[0-9]+/dsl$
100 acl is_named-query path_beg -i /aai/search/named-query
101 acl is_search-model path_beg -i /aai/search/model
102 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 or is_dsl
103
104 default_backend IST_Default_8447
105
106
107#######################
108#DEFAULT BACKEND 847###
109#######################
110
111backend IST_Default_8447
112 balance roundrobin
113 http-request set-header X-Forwarded-Port %[src_port]
114 http-response set-header Strict-Transport-Security max-age=16000000;\ includeSubDomains;\ preload;
115 server aai-resources.{{.Release.Namespace}} aai-resources.{{.Release.Namespace}}.svc.cluster.local:8447 resolvers kubernetes check check-ssl port 8447 ssl verify none
116
117
118#######################
119# BACKEND 8446#########
120#######################
121
122backend IST_AAI_8446
123 balance roundrobin
124 http-request set-header X-Forwarded-Port %[src_port]
125 http-response set-header Strict-Transport-Security max-age=16000000;\ includeSubDomains;\ preload;
126 server aai-traversal.{{.Release.Namespace}} aai-traversal.{{.Release.Namespace}}.svc.cluster.local:8446 resolvers kubernetes check check-ssl port 8446 ssl verify none
127