blob: 1cf88353301e4652d37a78bf22707b48f2366a5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
node:
id: authzd
cluster: authzd
admin:
address:
socket_address:
address: 0.0.0.0
port_value: 9991
application_log_config:
log_format:
json_format:
timestamp: "%Y-%m-%dT%T.%FZ"
thread_id: "%t"
level: "%l"
logger: "%n"
message: "%j"
overload_manager:
resource_monitors:
- name: "envoy.resource_monitors.global_downstream_max_connections"
typed_config:
"@type": type.googleapis.com/envoy.extensions.resource_monitors.downstream_connections.v3.DownstreamConnectionsConfig
max_active_downstream_connections: 10240
static_resources:
clusters:
- name: authzd
connect_timeout: 5s
type: STATIC
lb_policy: ROUND_ROBIN
load_assignment:
cluster_name: authzd
endpoints:
- lb_endpoints:
- endpoint:
address:
socket_address:
address: 127.0.0.1
port_value: 50051
typed_extension_protocol_options:
envoy.extensions.upstreams.http.v3.HttpProtocolOptions:
"@type": type.googleapis.com/envoy.extensions.upstreams.http.v3.HttpProtocolOptions
explicit_http_config:
http2_protocol_options: {}
health_checks:
- timeout: 3s
interval: 5s
unhealthy_threshold: 2
healthy_threshold: 2
grpc_health_check: {}
circuit_breakers:
thresholds:
- priority: DEFAULT
max_connections: 1024
max_pending_requests: 1024
max_requests: 1024
max_retries: 3
listeners:
- name: main_listener
address:
socket_address:
protocol: TCP
address: 0.0.0.0
port_value: 20000
filter_chains:
- filters:
- name: envoy.filters.network.http_connection_manager
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager
access_log:
- name: envoy.access_loggers.stdout
filter:
not_health_check_filter: {}
typed_config:
"@type": type.googleapis.com/envoy.extensions.access_loggers.stream.v3.StdoutAccessLog
log_format:
json_format:
timestamp: "%START_TIME(%FT%T.%3fZ)%"
method: "%REQ(:METHOD)%"
path: "%REQ(X-ENVOY-ORIGINAL-PATH?:PATH)%"
protocol: "%PROTOCOL%"
response_code: "%RESPONSE_CODE%"
response_flags: "%RESPONSE_FLAGS%"
bytes_received: "%BYTES_RECEIVED%"
bytes_sent: "%BYTES_SENT%"
duration_ms: "%DURATION%"
upstream_service_time: "%RESP(X-ENVOY-UPSTREAM-SERVICE-TIME)%"
x_forwarded_for: "%REQ(X-FORWARDED-FOR)%"
user_agent: "%REQ(USER-AGENT)%"
request_id: "%REQ(X-REQUEST-ID)%"
authority: "%REQ(:AUTHORITY)%"
upstream_host: "%UPSTREAM_HOST%"
codec_type: AUTO
request_timeout: 30s
stream_idle_timeout: 300s
http_filters:
# - name: envoy.filters.http.health_check
# typed_config:
# "@type": type.googleapis.com/envoy.extensions.filters.http.health_check.v3.HealthCheck
# pass_through_mode: false
# headers:
# - name: ":path"
# string_match:
# exact: "/health"
# - name: envoy.filters.http.ext_authz
# typed_config:
# "@type": type.googleapis.com/envoy.extensions.filters.http.ext_authz.v3.ExtAuthz
# transport_api_version: V3
# grpc_service:
# envoy_grpc:
# cluster_name: authzd
# timeout: 5s
# failure_mode_allow: false
# include_peer_certificate: true
# clear_route_cache: true
# status_on_error:
# code: 503
- name: envoy.filters.http.router
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.router.v3.Router
suppress_envoy_headers: true
route_config:
name: local_route
request_headers_to_remove:
- authorization
- cookie
response_headers_to_add:
- header:
key: "x-content-type-options"
value: "nosniff"
- header:
key: "x-frame-options"
value: "DENY"
- header:
key: "x-xss-protection"
value: "1; mode=block"
virtual_hosts:
- name: backend
domains: ["*"]
routes:
- match:
prefix: "/"
route:
cluster: authzd
timeout: 30s
retry_policy:
retry_on: "5xx,reset,connect-failure,retriable-status-codes"
num_retries: 3
per_try_timeout: 10s
retriable_status_codes: [503]
request_headers_to_add:
- header:
key: "x-real-ip"
value: "%DOWNSTREAM_REMOTE_ADDRESS_WITHOUT_PORT%"
- header:
key: "x-forwarded-proto"
value: "%REQ(X-FORWARDED-PROTO)%"
stat_prefix: ingress_http
common_http_protocol_options:
idle_timeout: 300s
headers_with_underscores_action: REJECT_REQUEST
http2_protocol_options:
max_concurrent_streams: 100
initial_stream_window_size: 65536
server_header_transformation: PASS_THROUGH
|