This repository has been archived by the owner on Mar 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathhttp_filter.proto
70 lines (58 loc) · 2.36 KB
/
http_filter.proto
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
syntax = "proto3";
package modsecurity;
import "google/protobuf/duration.proto";
import "gogoproto/gogo.proto";
import "validate/validate.proto";
message ModsecurityFilterConfigDecoder {
// If set, rules are loaded from this path
string rules_path = 1;
// If set, rules are loaded from this inline configuration.
// Note, if both rules_path and rules_inline are set, rules_path is first loaded and afterwards rules_inline is loaded
string rules_inline = 2;
// If set, a webhook will be called when a rule is matched. (non-disruptive actions only since ModSecurity >= v3.0.3)
ModsecurityWebhook webhook = 3;
}
message ModsecurityWebhook {
// The http server URI to trigger the webhook.
HttpUri http_uri = 1 [(validate.rules).message.required = true];
// If provided, an X-Envoy-Webhook-Signature-Value header will be added to the request with HMAC-SHA256 over the contents and `secret` as its key.
string secret = 2;
}
// TODO - HttpUri is copied from envoy/api/envoy/api/v2/core/http_uri.proto
// This should use the original http_uri.proto, however, since its visibility is not public it can't be imported
//
// Envoy external URI descriptor
message HttpUri {
// The HTTP server URI. It should be a full FQDN with protocol, host and path.
//
// Example:
//
// .. code-block:: yaml
//
// uri: https://www.googleapis.com/oauth2/v1/certs
//
string uri = 1 [(validate.rules).string.min_bytes = 1];
// Specify how `uri` is to be fetched. Today, this requires an explicit
// cluster, but in the future we may support dynamic cluster creation or
// inline DNS resolution. See `issue
// <https://github.com/envoyproxy/envoy/issues/1606>`_.
oneof http_upstream_type {
option (validate.required) = true;
// A cluster is created in the Envoy "cluster_manager" config
// section. This field specifies the cluster name.
//
// Example:
//
// .. code-block:: yaml
//
// cluster: jwks_cluster
//
string cluster = 2 [(validate.rules).string.min_bytes = 1];
}
// Sets the maximum duration in milliseconds that a response can take to arrive upon request.
google.protobuf.Duration timeout = 3 [
(validate.rules).duration.gte = {},
(validate.rules).duration.required = true,
(gogoproto.stdduration) = true
];
}