diff options
Diffstat (limited to '.rr.yaml')
-rw-r--r-- | .rr.yaml | 33 |
1 files changed, 31 insertions, 2 deletions
@@ -800,9 +800,14 @@ http: # Path to the root certificate authority file. # - # This option is optional. + # This option is optional (required for the mTLS). root_ca: /ssl/root.crt + # Client auth type (mTLS) + # + # This option is optional. Default value: no_client_certs. Possible values: request_client_cert, require_any_client_cert, verify_client_cert_if_given, require_and_verify_client_cert, no_client_certs + client_auth_type: no_client_certs + # FastCGI frontend support. fcgi: # FastCGI connection DSN. Supported TCP and Unix sockets. An empty value disables this. @@ -1173,6 +1178,11 @@ jobs: # If the job has priority set to 0, it will inherit the pipeline's priority. Default: 10. priority: 1 + # Consume any payload type (not only Jobs structured) + # + # Default: false + consume_all: false + # Durable queue # # Default: false @@ -1241,6 +1251,11 @@ jobs: # Default: 1 tube_priority: 1 + # Consume any payload type (not only Jobs structured) + # + # Default: false + consume_all: false + # Tube name # # Default: default @@ -1273,6 +1288,16 @@ jobs: # Default: 10 prefetch: 10 + # Consume any payload type (not only Jobs structured) + # + # Default: false + consume_all: false + + # Get queue URL only + # + # Default: false + skip_queue_declaration: false + # The duration (in seconds) that the received messages are hidden from subsequent # retrieve requests after being retrieved by a ReceiveMessage request # @@ -1314,7 +1339,6 @@ jobs: # # Should not be empty config: - # Pipeline priority # # If the job has priority set to 0, it will inherit the pipeline's priority. Default: 10. @@ -1325,6 +1349,11 @@ jobs: # Messages to read into the channel prefetch: 100 + # Consume any payload type (not only Jobs structured) + # + # Default: false + consume_all: false + # NATS subject # # Default: default |